From 2849484b9ad730f236d7f269493770ae39512fb9 Mon Sep 17 00:00:00 2001 From: Arne Weber Date: Sat, 21 Dec 2024 21:53:21 +0100 Subject: [PATCH] Added debug launch option to start app normally --- .vscode/launch.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9edcc18f..1f88c294 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,6 +11,15 @@ "program": "${file}", "console": "integratedTerminal" }, + { + "name": "Run App", + "type": "python", + "request": "launch", + "program": "main.py", + "args": [""], + "console": "integratedTerminal", + "justMyCode": false + }, { "name": "Run App (INFO)", "type": "python",