Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 556 Bytes

File metadata and controls

41 lines (28 loc) · 556 Bytes

Project Flow

Task manager app

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

Docker run database

# sudo docker run --rm --name projectflow-postgres -p 5432:5432 -e POSTGRES_PASSWORD=123456 -v /mnt/c/Users/odont/IdeaProjects/project-flow/postgres:/var/lib/postgresql/data -d postgres