
- Set up project structure with FastAPI - Create SQLite database with SQLAlchemy - Implement Alembic for database migrations - Add CRUD operations for items resource - Create health endpoint - Update documentation generated with BackendIM... (backend.im)
3 lines
124 B
Python
3 lines
124 B
Python
# Import all the models, so that alembic can detect them
|
|
from app.db.base_class import Base
|
|
from app.models.item import Item |