From 8414e728708c825cc21d476cbc7a6c1af8128a46 Mon Sep 17 00:00:00 2001 From: Dom Date: Fri, 6 Feb 2026 15:31:21 +0000 Subject: [PATCH] asdf --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/launch.json 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" } + ] + } + ] +}