
- Set up project structure and FastAPI application - Create database models with SQLAlchemy - Set up Alembic for database migrations - Create API endpoints for todo CRUD operations - Add health check endpoint - Add unit tests for API endpoints - Configure Ruff for linting and formatting
10 lines
171 B
Plaintext
10 lines
171 B
Plaintext
fastapi>=0.103.1
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.20
|
|
alembic>=1.12.0
|
|
pydantic>=2.3.0
|
|
pydantic-settings>=2.0.3
|
|
python-dotenv>=1.0.0
|
|
ruff>=0.0.290
|
|
pytest>=7.4.2
|
|
httpx>=0.24.1 |