chore: added .dockerignore and fixed start:prod (#2099) (#2211)

added .env to .dockerignore and fixed start:prod
This commit is contained in:
Ruslan
2023-10-24 19:41:52 +07:00
committed by GitHub
parent d5610fdb5b
commit b6e8fabbb1
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1,2 @@
node_modules/
.env

View File

@ -13,7 +13,7 @@
"start": "set NODE_ENV=development && nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"start:prod": "node dist/src/main",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",