
- Set up project structure with app modules - Configure SQLite database connection - Set up Alembic for database migrations - Implement Item model with CRUD operations - Create API endpoints for items management - Add health check endpoint - Add API documentation - Add comprehensive README
6 lines
208 B
Python
6 lines
208 B
Python
"""
|
|
Import all models to ensure they are registered with SQLAlchemy Base.
|
|
"""
|
|
# Import all models here for Alembic to detect
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.item import Item # noqa |