A progressive Node.js framework for building efficient and scalable server-side applications.
Firstly add .env file to root directory using the following template
MONGO_INITDB_ROOT_USERNAME=username
MONGO_INITDB_ROOT_PASSWORD=password
JWT_SECRET=secret
CSD_USER=User
CSD_PASSWORD=Password
Then you can run
$ docker compose up -d
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test