To do list - Simple API REST powered by NestJS
$ yarn install
# create docker container for mongodb
$ docker run --name mongo -d -p 27017:27017 mongo
# create a copy of config.json
$ cp config.json.example config.json
# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod
# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov