Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 637 Bytes

README.md

File metadata and controls

55 lines (38 loc) · 637 Bytes

Devoxx CFP API

License: MIT

This is the repository of a nestjs API presented during Devoxx France 2020

Build the app

$ yarn build

Run the app

# development
$ yarn start

# watch mode
$ yarn start:dev

# debug
$ yarn start:debug

# production mode
$ yarn build
$ yarn start:prod

Test

# unit tests
$ yarn test

# e2e tests
$ npm run test:e2e

# test coverage
$ yarn test:coverage

Lint

# lint
$ yarn lint

Format

# Format
$ yarn format