
- Set up project structure with FastAPI - Configure SQLAlchemy with SQLite - Implement user and item models - Set up Alembic for database migrations - Create CRUD operations for models - Implement API endpoints for users and items - Add authentication functionality - Add health check endpoint - Configure Ruff for linting - Update README with comprehensive documentation
4 lines
89 B
Python
4 lines
89 B
Python
from app.db.session import get_db
|
|
|
|
# Re-export the get_db dependency
|
|
__all__ = ["get_db"] |