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: services:
backend: backend:
env_file: "stack.env"
build: build:
args: args:
- NODE_ENV=production - NODE_ENV=production

View File

@ -9,9 +9,8 @@
], ],
"scripts": { "scripts": {
"test": "jest --verbose", "test": "jest --verbose",
"client": "cd client; yarn run dev:debug", "client:start": "cd client; yarn run dev:debug",
"server": "cd server; yarn run dev:debug", "server:start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/index.js",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"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\"" "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": { "engines": {