Add Debug launch config for vs code.

This commit is contained in:
Thomas Klaehn 2019-08-08 14:26:36 +02:00
parent 38f496dd8d
commit 0cf59eb7f1

19
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
// 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",
"configurations": [
{
"name": "bicycle-statistics",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/bicycle_statistics/__main__.py",
"console": "integratedTerminal",
"args": [
"/home/tkl/Nextcloud/Bicycle",
"${workspaceFolder}"
]
}
]
}