chore: add start command to run from source (#1928)

* chore: add start command to run from source

* fix: start command does not run in parallel
This commit is contained in:
Meier Lukas
2025-01-14 19:44:37 +01:00
committed by GitHub
parent 986e013ca3
commit 5c16fb8d6c
2 changed files with 3 additions and 0 deletions

2
.gitignore vendored
View File

@@ -54,7 +54,9 @@ yarn-error.log*
*.log
apps/tasks/tasks.cjs
apps/tasks/tasks.css
apps/websocket/wssServer.cjs
apps/websocket/wssServer.css
apps/nextjs/.million/
packages/cli/cli.cjs

View File

@@ -22,6 +22,7 @@
"lint:ws": "pnpm dlx sherif@latest",
"package:new": "turbo gen init",
"release": "semantic-release",
"start": "concurrently \"pnpm with-env node apps/tasks/tasks.cjs\" \"pnpm with-env node apps/websocket/wssServer.cjs\" \"pnpm -F nextjs start\"",
"test": "cross-env NODE_ENV=development CI=true vitest run --exclude e2e --coverage.enabled ",
"test:e2e": "cross-env NODE_ENV=development CI=true vitest e2e",
"test:ui": "cross-env NODE_ENV=development CI=true vitest --exclude e2e --ui --coverage.enabled",