
- Set up project structure with FastAPI - Configure SQLite database with SQLAlchemy - Set up Alembic for migrations - Create Item model and schema - Implement CRUD operations - Add health endpoint generated with BackendIM... (backend.im)
3 lines
144 B
Python
3 lines
144 B
Python
# Import all the models here, so that Alembic can auto-discover them
|
|
from app.db.base_class import Base
|
|
from app.models.item import Item # noqa |