Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 564 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 564 Bytes

Description

Nest framework TypeScript starter repository.

Installation

$ yarn install

Running the app

# development
$ yarn run start

# watch mode
$ yarn run start:dev

# production mode
$ yarn run start:prod

Test

# e2e tests
$ yarn run test:e2e

Running the Docker mode

# development
$ docker-compose up -d --build

# production mode
$ docker-compose -f docker-compose.production.yml up -d --build

# test
$ docker compose exec api_tickets yarn run test:e2e