
- Create complete task management system with CRUD operations - Add Task model with status, priority, timestamps - Set up SQLite database with SQLAlchemy and Alembic migrations - Implement RESTful API endpoints for task operations - Configure CORS middleware and API documentation - Add health check endpoint and root information response - Include proper project structure and comprehensive README
8 lines
141 B
TOML
8 lines
141 B
TOML
[tool.ruff]
|
|
target-version = "py38"
|
|
line-length = 88
|
|
select = ["E", "W", "F", "I"]
|
|
ignore = []
|
|
|
|
[tool.ruff.isort]
|
|
known-first-party = ["app"] |