
- Create Todo model and schemas - Set up API endpoints for CRUD operations - Configure SQLAlchemy for database access - Set up Alembic for database migrations - Add Ruff for code linting - Update README with project documentation
7 lines
208 B
Python
7 lines
208 B
Python
"""
|
|
Base module for SQLAlchemy models.
|
|
"""
|
|
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.todo import Todo # noqa |