Skip to content

richard483/8tech-API

Repository files navigation

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