/todo-nestjs

To do list - Simple API REST powered by NestJS

Primary LanguageTypeScriptMIT LicenseMIT

todo-nestjs

To do list - Simple API REST powered by NestJS

Installation

$ yarn install

Running the app

# 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

Test

# unit tests
$ yarn run test

# e2e tests
$ yarn run test:e2e

# test coverage
$ yarn run test:cov