From 02f73b795d787f87069bbdf501c5658e8bbf96e3 Mon Sep 17 00:00:00 2001 From: Spyrex <57133330+SpyrexDE@users.noreply.github.com> Date: Mon, 11 Apr 2022 11:45:00 +0200 Subject: Add vscode debugging (#33) --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..07508f6f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/plugin_loader/main.py", + "preLaunchTask": "Stop Service", + "console": "integratedTerminal", + "justMyCode": true + } + ] +} -- cgit v1.2.3