You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
455 B
Python
14 lines
455 B
Python
2 years ago
|
from sqlalchemy import create_engine
|
||
|
from sqlalchemy.ext.declarative import declarative_base
|
||
|
from sqlalchemy.orm import sessionmaker
|
||
|
|
||
|
from project.config import settings
|
||
|
|
||
|
# https://fastapi.tiangolo.com/tutorial/sql-databases/#create-the-sqlalchemy-engine
|
||
|
engine = create_engine(
|
||
|
settings.DATABASE_URL, connect_args=settings.DATABASE_CONNECT_DICT
|
||
|
)
|
||
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
||
|
|
||
|
Base = declarative_base()
|