import logging from collections.abc import AsyncGenerator import sqlalchemy as sa from sqlalchemy.ext.asyncio import AsyncSession, async_sessionmaker, create_async_engine from sqlalchemy.orm import declarative_base from app.config import get_settings logger = logging.getLogger(f"{__name__}.session") settings = get_settings() # Create async engine engine = create_async_engine( settings.database_url, echo=settings.debug, pool_size=settings.db_pool_size, max_overflow=settings.db_max_overflow, ) # Create session factory AsyncSessionLocal = async_sessionmaker( engine, class_=AsyncSession, expire_on_commit=False, autocommit=False, autoflush=False, ) # Base class for models Base = declarative_base() async def init_db() -> None: """Initialize database connection. NOTE: Schema creation is now handled by Alembic migrations. Run `alembic upgrade head` to create/update schema. See backend/README.md for migration instructions. """ # Verify database connectivity async with engine.begin() as conn: await conn.execute(sa.text("SELECT 1")) logger.info("Database connection initialized") async def get_session() -> AsyncGenerator[AsyncSession]: """Dependency for getting database session""" async with AsyncSessionLocal() as session: try: yield session await session.commit() except Exception: await session.rollback() raise finally: await session.close()