Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 822 Bytes

README.md

File metadata and controls

54 lines (39 loc) · 822 Bytes

Description

NestJS project for 8Tech back end

What you needed for running this app

Installation

Set the database environment on docker

$ docker compose up

Installing project

$ npm install

Run prisma migration & seeding

$ npm run migrate

Running the app

# development
$ npm run start

# development with hot reload
$ npm run dev

# 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