BuildForSDGCohort2 / Confyde-Backend

0 stars 1 forks source link

Confyde API built with Nest - a progressive Node.js framework for building efficient and scalable server-side applications.

Description

Nest framework TypeScript starter repository.

Installation

$ npm install

Configure the App

and

TYPEORM_HOST = 127.0.0.1 TYPEORM_PORT = 3306 TYPEORM_DATABASE = confyde TYPEORM_USERNAME = dbuser TYPEORM_PASSWORD = dbpass


## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Preview Open API documentation in Swagger

Visit http://localhost:4000/api/docs

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov