This project is built using the NestJS framework (NestJS).
Before running the project, ensure Node.js is installed. Copy the .env.example
file to .env
and fill in the required environment variables with their corresponding values.
docker-compose up --build
To set up the project locally, install the required dependencies using npm:
npm install -g @nestjs/cli
npm install
To run the project in development mode:
npm run start:dev
For watch mode:
npm run start:watch
To run the project in production mode:
npm run start:prod