Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 495 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 495 Bytes

Software Engineer Backend Test 1

Installation

$ npm install

Migration

copy .env file from .env.example

$ cp .env.example .env

update your mysql config in env file

$ npm run migration:run

Running the app

# 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