Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 515 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 515 Bytes

Description

Nest application with basic features.

Installation

$ yarn install

Running the app

# development watch mode
$ yarn start

Test

# unit tests
$ yarn run test

# e2e tests
$ yarn run test:e2e

# test coverage
$ yarn run test:cov

Migrations

# create migration
yarn db:create /src/migrations/<migration_name>

# run migration
yarn db:migrate

# drop data base
yarn db:drop

# seed data base
yarn db:seed