Skip to content

DEV-MUGLES/pickk-server

Repository files navigation

PICKK Logo

PICKK main server application

Installation

please make sure that Docker Desktop is available

$ npm install

Set Providers

# Start mysql, redis
# please make sure that [Docker Desktop](https://www.docker.com/products/docker-desktop) is available
$ npm run set

# clear docker containers, volumnes
$ npm run set:down

Running the app

$ npm run start

# watch mode
$ npm run start:dev

# debug mode
$ npm run start:debug

# with build files (/dist)
$ npm run start:prod

Test

# unit tests
$ npm run jest

# e2e tests
$ npm run jest:e2e

# test coverage
$ npm run jest:cov

# prettier, eslint, tsc, jest
$ npm run test