Spaces:
Sleeping
Sleeping
File size: 434 Bytes
75c7554 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import os
import sys
# Ensure project root (/app in Docker, the repo root locally) is on sys.path
_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
if _ROOT not in sys.path:
sys.path.insert(0, _ROOT)
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"server.app:app",
host="0.0.0.0",
port=int(os.getenv("PORT", 8000)),
reload=False,
log_level="info",
)
|