
- Set up FastAPI application structure - Implemented SQLite database integration with SQLAlchemy - Added Alembic migrations for database versioning - Created bet model and API endpoints for CRUD operations - Added comprehensive README with setup and usage instructions - Added health check endpoint and CORS support
6 lines
213 B
Python
6 lines
213 B
Python
# Import base class for SQLAlchemy models
|
|
|
|
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.models.bet import Bet # noqa
|
|
# Add more model imports here as they are created |