-
NodeJS: Recommended version - v14.17.3
-
Typescript: Recommended version - 4.5.5
-
Install all the required node modules:
npm install
To build the app:
nest build
To generate the prisma files
npm run prisma:generate
To build the docker image:
docker-compose build
To run the server:
npm run start
To run the project in the development mode:
npm run start:dev
Migrations update:
npm run migration:dev
Migrations reset:
npm run migration:reset
Seeds up:
npm run seed
To start testing the app:
npm run test
Docker up:
docker-compose up
Docker down:
docker-compose down
To run the client:
npm run start