13 lines
734 B
Python
13 lines
734 B
Python
# app/api/db/database.py
|
|
from sqlalchemy import create_engine
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
from sqlalchemy.orm import sessionmaker
|
|
SQLALCHEMY_DATABASE_URL = "sqlite:///./blog_app.db"
|
|
engine = create_engine(
|
|
SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
|
|
)
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
Base = declarative_base()
|
|
```
|
|
This code defines the necessary components for interacting with a SQLite database using SQLAlchemy in a FastAPI application named "blog_app".
|
|
This file should be placed in the `app/api/db/` directory of the FastAPI project. Other parts of the application can import and use these components to interact with the database. |