Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 465 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 465 Bytes

Create a .env file in the root of the repository and add the following credentials

PORT=

# MsSql database credentials
DB_HOST=
DB_PORT=
DB_USERNAME=
DB_PASSWORD=
DB_DATABASE=

# jwt
JWT_ACCESS_EXP_TIME=
JWT_SECRET=

# cloudinary
CLOUD_NAME=
API_KEY=
API_SECRET=

Installation

$ yarn install

Running the app

# development
$ yarn run start

# watch mode
$ yarn run start:dev

# production mode
$ yarn run start:prod