
- Set up project structure and dependencies - Create database models with SQLAlchemy - Implement API endpoints for CRUD operations - Set up Alembic for database migrations - Add health check endpoint - Configure Ruff for linting - Update documentation in README
4 lines
137 B
Python
4 lines
137 B
Python
# Import all the models here for Alembic to discover
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.item import Item # noqa
|