Task Management API built with NestJS
$ npm install
# create environment variable files
$ cp .env.example .env
# create the docker network
$ docker network create triangle-network
# start the container
$ docker compose up
- enter pgAdmin web with the credentials setted on docker-compose.yml file and create the server and database
- the server hostname/address must be the same as the postgresql service, instead of localhost since we are using docker
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
- Author - Fernando Yaeda
Nest is MIT licensed.