
- Set up project structure with FastAPI and SQLite - Created Todo model with SQLAlchemy ORM - Added CRUD operations for todos - Implemented API endpoints for Todo operations - Added health check endpoint - Added Alembic for database migrations - Updated README with documentation generated with BackendIM... (backend.im)
2 lines
64 B
Python
2 lines
64 B
Python
# Import models for easy access
|
|
from app.models.todo import Todo |