Skip to content

CharlesElGriego/NestJS-Course

Repository files navigation

Description

Demo app with Authentication and Authorization based on:

1. NestJS Fundamentals (iluvcoffee project) https://learn.nestjs.com/

Installation

$ npm install

Running the app

# For the first time, run my docker services
$ docker-compose up -d

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov