bicycle-statistics/.vscode/launch.json
2019-08-08 14:26:36 +02:00

19 lines
624 B
JSON

{
// 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}"
]
}
]
}