From 8b6bf1e91366d76ee3203b508b895e4b75d7f845 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Sat, 9 Aug 2025 17:19:27 +0200 Subject: [PATCH] chore(.vscode/launch.json): use shell instead of debugpy for running flask --- .vscode/launch.json | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index f55f6bd..48d65ac 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,17 +3,9 @@ "configurations": [ { "name": "Launch Flask", - "type": "debugpy", + "type": "node-terminal", "request": "launch", - "module": "flask", - "env": { - "FLASK_APP": "judas_server/web/web_server.py" - }, - "args": [ - "run", - "--host", - "0.0.0.0" - ] + "command": "flask --app src/judas_server/web/web_server.py run --host=0.0.0.0" } ] } -- 2.39.5