
- FastAPI application that monitors websites for updates - SQLite database with Website and WebsiteAlert models - REST API endpoints for website management and alerts - Background scheduler for automatic periodic checks - Content hashing to detect website changes - Health check endpoint and comprehensive documentation - Alembic migrations for database schema management - CORS middleware for cross-origin requests - Environment variable configuration support Co-Authored-By: Claude <noreply@anthropic.com>
3 lines
91 B
Python
3 lines
91 B
Python
from app.models.website import Website, WebsiteAlert
|
|
|
|
__all__ = ["Website", "WebsiteAlert"] |