Nomad stuff
Some checks failed
Build and Deploy LifeFAQ / build-image (push) Failing after 3m21s

This commit is contained in:
Henrik Jess Nielsen
2025-10-05 15:54:42 +02:00
parent 0747579dcf
commit f318440572
4 changed files with 145 additions and 53 deletions

9
app.py
View File

@@ -1,5 +1,12 @@
import os
import uvicorn
from app.main import app
if __name__ == "__main__":
uvicorn.run("app.main:app", host="0.0.0.0", port=9210, reload=False)
port = int(os.getenv("PORT", 8000))
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=port,
reload=False
)