Confyde API built with Nest - a progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ npm install
.env.example
to .env
or run
$ cp .env.example .env
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=confyde
DB_USERNAME=dbuser
DB_PASSWORD=dbpass
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
Visit http://localhost:4000/api/docs
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov