31 lines
502 B
Markdown
31 lines
502 B
Markdown
# Aero Resolve - Backend
|
|||
|
|
|
||
|
|
This is the backend REST API powered by NestJS.
|
||
|
|
|
||
|
|
## 🚀 Getting Started
|
||
|
|
|
||
|
|
### Prerequisites
|
||
|
|
- Node.js (v18+)
|
||
|
|
|
||
|
|
### Installation
|
||
|
|
1. Navigate to the backend directory (if you aren't already here):
|
||
|
|
```bash
|
||
|
|
cd backend
|
||
|
|
```
|
||
|
|
2. Install the dependencies using npm:
|
||
|
|
```bash
|
||
|
|
npm install
|
||
|
|
```
|
||
|
|
|
||
|
|
### Development
|
||
|
|
Start the local development server in watch mode:
|
||
|
|
```bash
|
||
|
|
npm run dev
|
||
|
|
```
|
||
|
|
|
||
|
|
### Build for Production
|
||
|
|
To compile the NestJS application:
|
||
|
|
```bash
|
||
|
|
npm run build
|
||
|
|
```
|