22 lines
516 B
Python
22 lines
516 B
Python
|
|
from sqlalchemy import create_engine
|
||
|
|
from sqlalchemy.ext.declarative import declarative_base
|
||
|
|
from sqlalchemy.orm import sessionmaker
|
||
|
|
import os
|
||
|
|
|
||
|
|
DATABASE_URL = os.getenv(
|
||
|
|
"DATABASE_URL",
|
||
|
|
"postgresql://vida180_user:vida180_strong_password_2024@postgres:5432/vida180_db"
|
||
|
|
)
|
||
|
|
|
||
|
|
engine = create_engine(DATABASE_URL)
|
||
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
||
|
|
|
||
|
|
Base = declarative_base()
|
||
|
|
|
||
|
|
def get_db():
|
||
|
|
db = SessionLocal()
|
||
|
|
try:
|
||
|
|
yield db
|
||
|
|
finally:
|
||
|
|
db.close()
|