15 lines
343 B
Python
15 lines
343 B
Python
|
|
|
||
|
|
from sqlalchemy import create_engine
|
||
|
|
from sqlalchemy.orm import sessionmaker, DeclarativeBase
|
||
|
|
|
||
|
|
DATABASE_URL = "sqlite:///./backend/app.db"
|
||
|
|
|
||
|
|
engine = create_engine(
|
||
|
|
DATABASE_URL, connect_args={"check_same_thread": False}
|
||
|
|
)
|
||
|
|
|
||
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
||
|
|
|
||
|
|
class Base(DeclarativeBase):
|
||
|
|
pass
|