Added the sqlite3 database
This commit is contained in:
24
backend/app/database.py
Normal file
24
backend/app/database.py
Normal 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)
|
Reference in New Issue
Block a user