mirror of
https://github.com/flibusta-apps/users_settings_server.git
synced 2025-12-06 06:35:39 +01:00
48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
from fastapi import FastAPI
|
|
from fastapi.responses import ORJSONResponse
|
|
|
|
from fastapi_pagination import add_pagination
|
|
from prometheus_fastapi_instrumentator import Instrumentator
|
|
from redis import asyncio as aioredis
|
|
|
|
from app.views import routers
|
|
from core.config import env_config
|
|
from core.db import database
|
|
|
|
|
|
def start_app() -> FastAPI:
|
|
app = FastAPI(default_response_class=ORJSONResponse)
|
|
|
|
for router in routers:
|
|
app.include_router(router)
|
|
|
|
app.state.database = database
|
|
|
|
app.state.redis = aioredis.Redis(
|
|
host=env_config.REDIS_HOST,
|
|
port=env_config.REDIS_PORT,
|
|
db=env_config.REDIS_DB,
|
|
password=env_config.REDIS_PASSWORD,
|
|
)
|
|
|
|
add_pagination(app)
|
|
|
|
@app.on_event("startup")
|
|
async def startup() -> None:
|
|
database_ = app.state.database
|
|
if not database_.is_connected:
|
|
await database_.connect()
|
|
|
|
@app.on_event("shutdown")
|
|
async def shutdown() -> None:
|
|
database_ = app.state.database
|
|
if database_.is_connected:
|
|
await database_.disconnect()
|
|
|
|
Instrumentator(
|
|
should_ignore_untemplated=True,
|
|
excluded_handlers=["/docs", "/metrics", "/healthcheck"],
|
|
).instrument(app).expose(app, include_in_schema=True)
|
|
|
|
return app
|