6 Commits

Author SHA1 Message Date
Automated Action
170fac63fa Add bulk complete todos endpoint for efficient batch operations 2025-06-17 06:28:41 +00:00
Automated Action
40981760c9 Fix Pydantic v2 configuration for application startup
- Added proper type annotations for DB_DIR using ClassVar[Path]
- Updated Settings class to use model_config instead of deprecated Config class
- Fixed PydanticUserError for non-annotated attributes in settings
- Application should now start properly with uvicorn
2025-06-17 05:58:42 +00:00
Automated Action
7cef391c68 Fix database migration error by adding missing dependency
- Added pydantic-settings>=2.0.0 to requirements.txt to resolve ModuleNotFoundError
- Simplified migrations/env.py imports to avoid config dependency issues
- Removed unnecessary settings import from migration environment
- Migration now uses database URL directly from alembic.ini configuration
2025-06-17 05:55:17 +00:00
Automated Action
091c42482c Add todo categories and due dates with filtering capabilities
- Added category field to Todo model for organizing todos
- Added due_date field with timezone support for deadline tracking
- Enhanced CRUD operations with filtering by category, completion status, and overdue items
- Added new API endpoints for category-based and overdue todo retrieval
- Updated API documentation with new filtering query parameters
- Created database migration for new fields with proper indexing
- Updated README with comprehensive feature documentation
2025-06-17 05:51:35 +00:00
Automated Action
7b3cd8d0dd Complete FastAPI Todo application with full CRUD functionality
- 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
2025-06-17 05:28:06 +00:00
Automated Action
1aa9055725 Initial commit from template 2025-06-17 05:09:24 +00:00