123 / server.py
Erinaldorodrigues's picture
Upload 9 files
98713f8 verified
Raw
History Blame Contribute Delete
348 Bytes
from app.main import app, settings
if __name__ == "__main__":
import uvicorn
# Pass the object directly. This avoids importing the application module a second time.
uvicorn.run(
app,
host=settings.app_host,
port=settings.app_port,
log_level=settings.log_level.lower(),
access_log=False,
)