From 0f4810d41f9cb1b560fcd55cafaa3da9c29b862d Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 21 Apr 2020 13:09:52 +0000 Subject: [PATCH] Add debug --- .gitignore | 1 + .vscode/launch.json | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .vscode/launch.json 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" + } + ] + } + ] +}