
- Set up project structure with FastAPI - Configure SQLite database with SQLAlchemy - Create Task model with Alembic migrations - Implement CRUD API endpoints for tasks - Add health check and CORS configuration - Update documentation
6 lines
160 B
Python
6 lines
160 B
Python
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import tasks
|
|
|
|
router = APIRouter()
|
|
|
|
router.include_router(tasks.router, prefix="/tasks", tags=["Tasks"]) |