A out-of-box repository for Nest framework
A repository have some basic but annoying settings for a new Nestjs project.
- postgresSQL database configuration
- TypeORM configuration
- Env config configuration
- WinstonLogger configuration
- microservice configuration
$ yarn install
# setting up database
$ docker-compose up -d
# 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