Added the sqlite3 database

This commit is contained in:
GotthardG
2024-11-01 14:13:38 +01:00
parent 579e769bb0
commit 48cd233231
11 changed files with 425 additions and 0 deletions

24
backend/app/database.py Normal file
View File

@ -0,0 +1,24 @@
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
DATABASE_URL = "sqlite:///./test.db"
# Database setup
engine = create_engine(DATABASE_URL, connect_args={"check_same_thread": False})
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()
# Dependency
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close()
# Initialize the database
def init_db():
import app.models # Import all models here for metadata.create_all() to recognize them
Base.metadata.create_all(bind=engine)