
- Add SQLAlchemy models for Todo with timestamps - Create Pydantic schemas for request/response validation - Implement CRUD operations for Todo management - Add REST API endpoints for todo operations (GET, POST, PUT, DELETE) - Configure SQLite database with proper connection settings - Set up Alembic migrations for database schema management - Add comprehensive API documentation and health check endpoint - Enable CORS for all origins - Include proper error handling and HTTP status codes - Update README with complete setup and usage instructions
8 lines
138 B
Plaintext
8 lines
138 B
Plaintext
fastapi>=0.104.0
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.0
|
|
pydantic>=2.4.2
|
|
pydantic[email]>=2.4.2
|
|
alembic>=1.12.0
|
|
python-dotenv>=1.0.0
|
|
ruff>=0.1.3 |