diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0210aa3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Attach debugpy (melesICUmover)", + "type": "python", + "request": "attach", + "connect": { "host": "127.0.0.1", "port": 5678 }, + "pathMappings": [ + { "localRoot": "${workspaceFolder}", "remoteRoot": "/app" } + ] + } + ] +}