
- Set up FastAPI project structure with API versioning - Create database models for users and tasks - Implement SQLAlchemy ORM with SQLite database - Initialize Alembic for database migrations - Create API endpoints for task management (CRUD) - Create API endpoints for user management - Add JWT authentication and authorization - Add health check endpoint - Add comprehensive README.md with API documentation
5 lines
150 B
Python
5 lines
150 B
Python
from app.models.task import Task, TaskPriority, TaskStatus
|
|
from app.models.user import User
|
|
|
|
__all__ = ["Task", "TaskPriority", "TaskStatus", "User"]
|