Files
LifeFaq/app.py
Henrik Jess Nielsen f318440572
Some checks failed
Build and Deploy LifeFAQ / build-image (push) Failing after 3m21s
Nomad stuff
2025-10-05 15:54:42 +02:00

12 lines
228 B
Python

import os
import uvicorn
from app.main import app
if __name__ == "__main__":
port = int(os.getenv("PORT", 8000))
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=port,
reload=False
)