From 7d55f0a4cd3fc9780ad45fa3b1e3fe65851c93e9 Mon Sep 17 00:00:00 2001 From: tajniak81 <13187254+tajniak81@users.noreply.github.com> Date: Thu, 16 Jul 2026 21:19:08 +0200 Subject: [PATCH] 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 --- .claude/launch.json | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/.claude/launch.json b/.claude/launch.json index 6a181be..0559cdc 100644 --- a/.claude/launch.json +++ b/.claude/launch.json @@ -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 } ] }