Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 990 Bytes

README.md

File metadata and controls

57 lines (38 loc) · 990 Bytes

NestJS-Project-Starter

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

Description

Nest framework TypeScript starter repository with Prisma, auth using Passport strategies, JwtGuard, RtGuard, decorators, refreshToken and accessToken, all set up.

Installation

yarn install

Setting up env variables

mv .env.test .env

Then, change the env variables as per your wish.

Database setup

yarn dev:db:start

Running the app

# development
yarn run start

# watch mode
yarn run start:dev

# production mode
yarn run start:prod

Test

# unit tests
yarn run test

# e2e tests
yarn run test:e2e

# test coverage
yarn run test:cov