
- 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
10 lines
202 B
Plaintext
10 lines
202 B
Plaintext
fastapi>=0.103.1
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.20
|
|
alembic>=1.12.0
|
|
pydantic>=2.4.0
|
|
pydantic-settings>=2.0.3
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
python-multipart>=0.0.6
|
|
ruff>=0.0.292 |