Add debug

This commit is contained in:
Pascal Vizeli 2020-04-21 13:09:52 +00:00
parent 175848f2a8
commit 0f4810d41f
2 changed files with 19 additions and 0 deletions

1
.gitignore vendored
View File

@ -95,3 +95,4 @@ ENV/
.vscode/*
!.vscode/cSpell.json
!.vscode/tasks.json
!.vscode/launch.json

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

@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Supervisor remote debug",
"type": "python",
"request": "attach",
"port": 33333,
"host": "172.30.32.2",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/usr/src/supervisor"
}
]
}
]
}