
- Setup project structure and FastAPI application - Create SQLite database with SQLAlchemy - Implement user authentication with JWT - Create task and user models - Add CRUD operations for tasks and users - Configure Alembic for database migrations - Implement API endpoints for task management - Add error handling and validation - Configure CORS middleware - Create health check endpoint - Add comprehensive documentation
11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
fastapi>=0.104.0
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.0
|
|
alembic>=1.12.0
|
|
pydantic>=2.4.2
|
|
pydantic-settings>=2.0.3
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
python-multipart>=0.0.6
|
|
email-validator>=2.0.0
|
|
ruff>=0.1.3 |