api / database.py
tracinginsights's picture
Update database.py
6443a07
raw
history blame contribute delete
439 Bytes
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
# DATABASE_URL = "postgresql://tracinginsights:gabbie1972!@localhost/maindb"
DATABASE_URL = "sqlite:///./cache/main.db"
engine = create_engine(DATABASE_URL, connect_args={"check_same_thread": False})
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()