sudacode b7e89d9c22
All checks were successful
Build Docker Image / build (push) Successful in 12m39s
V0.2.0
2025-02-13 17:46:15 -08:00

15 lines
357 B
Python

from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, scoped_session
from app.config import Config
engine = create_engine(Config.SQLALCHEMY_DATABASE_URI, pool_pre_ping=True)
Session = scoped_session(sessionmaker(bind=engine))
def get_db_session():
return Session()
def close_db_session(exception=None):
Session.remove()