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>
This commit is contained in:
tajniak81
2026-07-16 21:19:08 +02:00
co-authored by Claude Opus 4.8
parent 75a2ccc226
commit 7d55f0a4cd
+14 -17
View File
@@ -2,31 +2,28 @@
"version": "0.0.1",
"configurations": [
{
"name": "web",
"runtimeExecutable": "C:\\Users\\jania\\carctl-web.cmd",
"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": "C:\\Users\\jania\\carctl-panel.cmd",
"runtimeArgs": [],
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "API Server/panel",
"port": 5174,
"autoPort": false
},
{
"name": "phone",
"runtimeExecutable": "C:\\Python313\\python.exe",
"runtimeArgs": [
"-m",
"http.server",
"8091",
"--directory",
"E:\\VS Code Projects\\Car Control Project\\Phone App\\build\\web"
],
"port": 8091,
"autoPort": false
}
]
}