A NestJS GraphQL starter with JWT Auth and PostgreSQL with TypeORM
- Authentication / Authorization
Make sure to have Node and Docker installed.
npm install
# development
$ docker-compose up // Spins a Postgres instance
$ npm run start
# watch mode
$ docker-compose up // Spins a Postgres instance
$ 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