This commit is contained in:
Dom 2026-02-06 14:38:43 +00:00
parent b9ad76f103
commit 2ce587b1e0
2 changed files with 20 additions and 0 deletions

14
launch.json Normal file
View File

@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Docker (melesICUmover)",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
}
}
]
}

View File

@ -20,6 +20,12 @@ import pytesseract
import yaml
if os.environ.get("DEBUG") == "1":
import debugpy
debugpy.listen(("0.0.0.0", 5678))
print("Waiting for debugger...")
debugpy.wait_for_client()
# -----------------------