Compare commits

...

2 Commits

Author SHA1 Message Date
Dom
2ce587b1e0 again 2026-02-06 14:38:43 +00:00
Dom
b9ad76f103 asedf 2026-02-06 14:34:33 +00:00
3 changed files with 22 additions and 0 deletions

View File

@ -12,3 +12,5 @@ services:
options:
max-size: "10m"
max-file: "3"
ports:
- "5678:5678"

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()
# -----------------------