A backend REST API for a blog application called "Median" (a simple Medium clone).
This project is built to learn about NestJS, Prisma and Swagger.
- NestJS to learn more about APIs (REST in particular) and the framework
- Prisma to learn more about ORMs, SQL (PostgreSQL) and database management
- Swagger to learn more about API documentation
Followed this guide
$ 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
Nest is MIT licensed.