Zenith-AI / app.py
Shads229's picture
Upload 16 files
6d18217 verified
raw
history blame contribute delete
235 Bytes
from backend.main import app
import uvicorn
import os
if __name__ == "__main__":
# Hugging Face utilise le port 7860 par défaut
port = int(os.environ.get("PORT", 7860))
uvicorn.run(app, host="0.0.0.0", port=port)