HotTrack / backend /app /database.py
chanfasf's picture
Initial deployment: HotTrack - YouTube & TikTok Analyzer
c4d0ee2
Raw
History Blame Contribute Delete
430 Bytes
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, declarative_base
from app.config import settings
engine = create_engine(
settings.DATABASE_URL,
connect_args={"check_same_thread": False},
)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close()