From fe8052654bd2943008b9f5d5ba97164474b2f017 Mon Sep 17 00:00:00 2001 From: DevilXD <4180725+DevilXD@users.noreply.github.com> Date: Wed, 7 Aug 2024 22:46:20 +0200 Subject: [PATCH] Add GQL debug VSCode launch option --- .vscode/launch.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 716cda6..93aad11 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -38,6 +38,15 @@ "console": "integratedTerminal", "justMyCode": false }, + { + "name": "Run App (DEBUG+GQL)", + "type": "python", + "request": "launch", + "program": "main.py", + "args": ["-vvv", "--debug-gql"], + "console": "integratedTerminal", + "justMyCode": false + }, { "name": "Debug GUI", "type": "python",