first running test get and post :)

This commit is contained in:
Georg-Stahn
2023-11-20 22:45:31 +01:00
committed by Luis-Hebendanz
parent 115b758828
commit 16d0907da8
8 changed files with 103 additions and 54 deletions

View File

@@ -7,6 +7,14 @@ URL = "sqlite:///./sql_app.db"
engine = create_engine(
URL, connect_args={"check_same_thread":False}
)
SessionLocal = sessionmaker(autocommit=False, autoflush=Flase, bind=engine)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()
Base = declarative_base()
# Dependency to start a clean thread of the db
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close()