This commit is contained in:
2026-08-10 02:04:45 +02:00
parent 39cb848f67
commit 593edf35fe
10 changed files with 394 additions and 33 deletions
+4 -1
View File
@@ -17,7 +17,10 @@
"cutover:deploy-check": "node scripts/cutover-deploy-check.mjs",
"cutover:deploy-check:code": "node scripts/cutover-deploy-check.mjs --skip-goose --skip-readyz",
"start:web": "npm run start --workspace=web",
"build": "npm run build --workspace=web && node scripts/run-in-dir.mjs apps/api go build ./...",
"build": "node scripts/build.mjs",
"build:web": "node scripts/build.mjs --web",
"build:api": "node scripts/build.mjs --api",
"build:go:all": "node scripts/run-in-dir.mjs apps/api go build -p=1 ./...",
"predev": "node scripts/free-dev-ports.mjs",
"dev": "concurrently -k -n api,web,worker -c cyan,magenta,yellow \"npm run dev:api:inner\" \"npm run dev:web:inner\" \"npm run dev:worker:inner\"",
"dev:api:inner": "node scripts/with-forced-env.mjs HTTP_ADDR=:28471 WEB_ORIGIN=http://localhost:28472 PUBLIC_API_URL=http://localhost:28471 -- node scripts/run-in-dir.mjs apps/api go run ./cmd/api",