VScode: add environment for debugging

This commit is contained in:
Thomas Klaehn 2019-11-22 11:39:20 +01:00
parent 8a0318b656
commit ae4cfa3a6d

10
.vscode/launch.json vendored
View File

@ -1,7 +1,4 @@
{ {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
@ -13,7 +10,10 @@
"args": [ "args": [
"/home/tkl/Nextcloud/Bicycle", "/home/tkl/Nextcloud/Bicycle",
"${workspaceFolder}" "${workspaceFolder}"
] ],
"env": {
"PYTHONPATH": "${workspaceFolder}"
}
} }
] ]
} }