From ce468383281fa8b541b1759355f1c6633fb432dd Mon Sep 17 00:00:00 2001 From: Robin Beer Date: Fri, 15 Mar 2024 21:30:10 +0100 Subject: [PATCH] add debug launch config "Debug Fullstack" --- .vscode/launch.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 24eae850d0..5dd8b20ae0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -22,7 +22,18 @@ "request": "launch", "name": "Debug Frontend: Launch Chrome against http://localhost:5173", "url": "http://localhost:5173", - "webRoot": "${workspaceFolder}/frontend" + "webRoot": "${workspaceFolder}/frontend", + // "runtimeExecutable": "/usr/bin/google-chrome" + }, + ], + "compounds": [ + { + "name": "Debug Fullstack", + "configurations": [ + "Debug FastAPI Project backend: Python Debugger", + "Debug Frontend: Launch Chrome against http://localhost:5173" + ], + "stopAll": true }, ] }