
- Set up project structure with FastAPI - Create database models for notes - Implement Alembic migrations - Create API endpoints for note CRUD operations - Implement note export functionality (markdown, txt, pdf) - Add health endpoint - Set up linting with Ruff
3 lines
118 B
Python
3 lines
118 B
Python
# Import all models here to ensure they are registered with SQLAlchemy
|
|
from app.models.note import Note # noqa: F401
|