Spaces:
Runtime error
Runtime error
File size: 159 Bytes
5a67683 |
1 2 3 4 5 6 7 8 |
import uvicorn
from app._config import settings
from app.main import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=settings.PORT)
|