
This commit includes: - Basic project structure with FastAPI - SQLite database integration using SQLAlchemy - CRUD API for items - Alembic migrations setup - Health check endpoint - Proper error handling - Updated README with setup instructions
4 lines
126 B
Python
4 lines
126 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
# Create a Base class for SQLAlchemy models
|
|
Base = declarative_base() |