old leftovers from pre merge

This commit is contained in:
serversdwn
2026-01-09 19:41:16 +00:00
parent 893cb96e8d
commit ee025f1f34
3 changed files with 926 additions and 28 deletions

View File

@@ -524,4 +524,6 @@ def health_check():
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8001)
import os
port = int(os.getenv("PORT", 8001))
uvicorn.run(app, host="0.0.0.0", port=port)