19 lines
515 B
Python
19 lines
515 B
Python
# app/core/database.py
|
|
|
|
from sqlalchemy import create_engine
|
|
from sqlalchemy.orm import sessionmaker, declarative_base
|
|
from app.core.config import settings
|
|
|
|
engine = create_engine(settings.database_url, echo=True)
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
Base = declarative_base()
|
|
|
|
def get_db():
|
|
db = SessionLocal()
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close()
|
|
|
|
# 세션 클래스 생성
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) |