/boilerplate-nestjs

Criando um boilerplate para NestJS, usando princípios do SOLID e CleanCode.

Primary LanguageTypeScript

Description

This web service was created to practice some programming concepts. It was used SOLID, TDD, Clean Code, ORM and another tools.

Installation (using NPM or YARN)

$ npm install
or
$ yarn

Running the app

# development
$ npm run start
or
$ yarn start

# watch mode
$ npm run start:dev
or
$ yarn start:dev

# production mode
$ npm run start:prod
or
$ yarn start:prod

Test

# unit tests
$ npm run test
or
$ yarn test

# test coverage
$ npm run test:cov
or
$ yarn test:cov