2026-07-06 13:16:46 +05:30
2026-07-06 13:16:46 +05:30
2026-07-06 13:16:46 +05:30
2026-07-06 13:16:46 +05:30
2026-07-06 13:16:46 +05:30

Aero Resolve - Backend

This is the backend REST API powered by NestJS.

🚀 Getting Started

Prerequisites

  • Node.js (v18+)
  • npm

Installation

  1. Navigate to the backend directory:
    cd backend
    
  2. Install the dependencies:
    npm install
    

Environment files

The project uses environment-specific files:

  • .env
  • .env.dev
  • .env.test

The npm scripts automatically set NODE_ENV so the correct file is used.

Run locally

Start the local development server:

npm run start

Start the development server in watch mode:

npm run dev

Run tests

Run the test suite with the test environment:

npm test

Build commands

Build for development:

npm run build:dev

Build for test:

npm run build:test

Useful scripts

  • npm run start - starts the app using the local development environment
  • npm run dev - starts the app using .env.dev
  • npm test - runs tests using .env.test
  • npm run build - builds the app for development
  • npm run build:dev - explicit development build
  • npm run build:test - explicit test build
S
Description
No description provided
Readme
354 KiB
Languages
TypeScript 99.7%
JavaScript 0.3%