From 65b9f2572538b57f62a379b8a8ce00114b10770d Mon Sep 17 00:00:00 2001 From: Stefan Hynek <stefan.hynek@uni-goettingen.de> Date: Wed, 16 Feb 2022 16:58:38 +0100 Subject: [PATCH] chore: add vscode debugging config --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2c211f7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "name": "Python: main.py", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/src/main.py", + "justMyCode": false + } + ] +} -- GitLab