From e864a9f5f35eba4cf5b630f5711b9926169b55a6 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Sun, 30 Nov 2025 14:25:11 +1100 Subject: [PATCH] Add launch.json for debugging via vscode --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..cc4ca23 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Flask App", + "type": "debugpy", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_DEBUG": "1" + }, + "args": [ + "run", + "--no-debugger", + "--no-reload" + ], + "jinja": true + }, + { + "name": "Worker", + "type": "debugpy", + "request": "launch", + "program": "${workspaceFolder}/worker.py", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file