CRUD Service to get some hands on NestJS, there is no business logic, or well structured code.
This service is just a technical playground.
- Model domains/entities
- Add validation to entities
- Add database support
- Add e2e test for validation
- No business logic
$ npm installYou need to have docker installed
docker compose up -d# 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