Add healthcheck

This commit is contained in:
2026-06-02 04:33:12 -04:00
parent 1fd7803f12
commit 242820f9d1
5 changed files with 33 additions and 3 deletions
+1
View File
@@ -20,6 +20,7 @@ class Config:
collect_interval_seconds: int = int(os.getenv("COLLECT_INTERVAL_SECONDS", "900"))
app_timezone: str = os.getenv("APP_TIMEZONE", "Europe/London")
flask_secret_key: str = os.getenv("FLASK_SECRET_KEY", "dev-only-secret")
healthcheck_url: str | None = os.getenv("HEALTHCHECK_URL")
config = Config()