This was adapted from an introductory course to NestJS. The major purpose of this project was to familiarise myself with the Prisma ORM, how to use docker and also on how to use pactum in writing e2e testing. The project furthered solidified my understanding of NestJS.
$ npm install
# 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