
- 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
208 B
Python
7 lines
208 B
Python
"""API router setup."""
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import tasks
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"]) |