48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
from collections.abc import AsyncIterator
|
|
from contextlib import asynccontextmanager
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from app.auth.router import router as auth_router
|
|
from app.config import settings
|
|
from app.database import engine
|
|
from app.routers.categories import router as categories_router
|
|
from app.routers.transactions import router as transactions_router
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(_app: FastAPI) -> AsyncIterator[None]:
|
|
yield
|
|
await engine.dispose()
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
app = FastAPI(
|
|
title="Budget Tracker API",
|
|
version="0.1.0",
|
|
lifespan=lifespan,
|
|
)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.CORS_ORIGINS,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
@app.get("/health")
|
|
async def health_check() -> dict[str, str]:
|
|
return {"status": "ok"}
|
|
|
|
api_prefix = "/api/v1"
|
|
app.include_router(auth_router, prefix=api_prefix)
|
|
app.include_router(transactions_router, prefix=api_prefix)
|
|
app.include_router(categories_router, prefix=api_prefix)
|
|
|
|
return app
|
|
|
|
|
|
app = create_app()
|