This application refers to user authentication and authorization with JWT and redis server.
NestJS Authentication with JWT and Redis is a streamlined process of incorporating a secure authentication system into a NestJS application. This approach utilizes JSON Web Tokens (JWT) for stateless authentication and Redis for efficient session management.
$ 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