Files
DriverVault/.claude/launch.json
T
tajniak81andClaude Opus 4.8 7d55f0a4cd Fix stale launch configs to match current project layout
The launch configs still referenced the pre-rename "Car Control Project" tree
via carctl-*.cmd wrappers, so none of them could start anything.

- api-server: run bin/api-server.exe from "API Server" on :8080
- web-app: npm run dev from "Web App/web" on :5173 (post-restructure path)
- panel: npm run dev from "API Server/panel" on :5174, replacing the wrapper
- Drop the phone entry: it served Phone App/build/web from the deleted project
  path and that build directory does not exist here

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-16 21:19:08 +02:00

30 lines
604 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "api-server",
"runtimeExecutable": "./bin/api-server.exe",
"runtimeArgs": [],
"cwd": "API Server",
"port": 8080,
"autoPort": false
},
{
"name": "web-app",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "Web App/web",
"port": 5173,
"autoPort": false
},
{
"name": "panel",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "API Server/panel",
"port": 5174,
"autoPort": false
}
]
}