mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-13 11:50:31 +02:00
27 lines
770 B
Python
27 lines
770 B
Python
import os
|
|
from typing import Generator
|
|
|
|
from dotenv import load_dotenv
|
|
from sqlalchemy import create_engine
|
|
from sqlalchemy.orm import sessionmaker
|
|
from sqlalchemy.orm.session import Session
|
|
|
|
load_dotenv()
|
|
|
|
host = os.getenv("POSTGRES_HOST", "localhost")
|
|
user = os.getenv("POSTGRES_USER", "postgres")
|
|
password = os.getenv("POSTGRES_PASSWORD", "root")
|
|
port = os.getenv("POSTGRES_PORT", "5432")
|
|
name = os.getenv("POSTGRES_DB", "fastapi")
|
|
|
|
SQLALCHEMY_DATABASE_URL = f"postgresql+psycopg://{user}:{password}@{host}:{port}/"
|
|
|
|
|
|
engine = create_engine(SQLALCHEMY_DATABASE_URL + name, pool_pre_ping=True)
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
|
|
|
|
def get_db() -> Generator[Session, None, None]:
|
|
with SessionLocal() as db:
|
|
yield db
|