REST API Courses server on Nodejs + NestJs
Copy file .env.example to .env and edit settings
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
npm run start:prod
# start container
$ sudo docker-compose up
Swagger API doc:
Open http://localhost:3000/api
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov