diff --git a/.gitignore b/.gitignore index 74453f62e..d2ef118c0 100644 --- a/.gitignore +++ b/.gitignore @@ -95,3 +95,4 @@ ENV/ .vscode/* !.vscode/cSpell.json !.vscode/tasks.json +!.vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..0e3f62e4f --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] + } + ] +}