/OpenPoker

Helps create and run a SCRUM planning poker session for estimations

Primary LanguageTypeScriptMIT LicenseMIT

OpenPoker

Helps create and run a SCRUM planning poker session for estimations

Attributions

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

Common commands

# Create database migration file with the provided name
$ npx typeorm migration:create src/server/migrations/MigrationName

# Generate migrations from entities
$ npm run typeorm:generate src/server/migrations/MigrationName

# Run database migrations
$ npm run typeorm:run

# Revert latest migration
$ npm run typeorm:revert