
- Set up FastAPI application structure - Create Task model with SQLAlchemy - Implement CRUD operations for tasks - Add API endpoints for tasks with filtering options - Configure Alembic for database migrations - Add health check endpoint - Configure Ruff for linting - Add comprehensive documentation in README.md
7 lines
199 B
Python
7 lines
199 B
Python
"""Base class for all models."""
|
|
from app.db.base import Base
|
|
|
|
# Import all models here so that Base has them before creating the metadata
|
|
from app.models.task import Task
|
|
|
|
__all__ = ["Base", "Task"] |