This commit is contained in:
David Arranz 2024-09-08 19:18:27 +02:00
parent eb0ca93c29
commit 8eb9d53850
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,6 @@
services:
backend:
env_file: "stack.env"
build:
args:
- NODE_ENV=production

View File

@ -9,9 +9,8 @@
],
"scripts": {
"test": "jest --verbose",
"client": "cd client; yarn run dev:debug",
"server": "cd server; yarn run dev:debug",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"client:start": "cd client; yarn run dev:debug",
"server:start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/index.js",
"clean": "concurrently --kill-others-on-fail \"cd server; yarn run clean\" \"cd shared; yarn run clean\" \"cd client; yarn run clean\" \"rm -rf node_modules\""
},
"engines": {