Add vscode debug configuration
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-16 19:45:33 +01:00
parent 28097c2f2e
commit 91d3dcd9e9

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

@@ -0,0 +1,15 @@
{
// 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": "Python: Current file",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}