
- Setup project structure and FastAPI application - Configure SQLite database with SQLAlchemy ORM - Setup Alembic for database migrations - Implement user authentication with JWT - Create task models and CRUD operations - Implement task assignment functionality - Add detailed API documentation - Create comprehensive README with usage instructions - Lint code with Ruff
16 lines
547 B
Python
16 lines
547 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import auth, health, task_assignments, tasks, users
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(health.router, prefix="/health", tags=["Health"])
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["Users"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["Tasks"])
|
|
api_router.include_router(
|
|
task_assignments.router,
|
|
prefix="/tasks",
|
|
tags=["Task Assignments"]
|
|
)
|