2026-01-17 14:18:00 +05:30
|
|
|
import uvicorn
|
|
|
|
|
from app import create_app
|
|
|
|
|
from app.config.settings import settings
|
|
|
|
|
|
|
|
|
|
app = create_app()
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
uvicorn.run(
|
|
|
|
|
"run:app",
|
|
|
|
|
host=settings.HOST,
|
|
|
|
|
port=settings.PORT,
|
2026-01-19 10:39:12 +05:30
|
|
|
reload=settings.APP_ENV == "development",
|
2026-02-05 14:30:07 +05:30
|
|
|
)
|