feat: add POST /signalid/match route with scoring and caching

This commit is contained in:
James Smith
2026-07-03 08:29:21 +01:00
parent 5f1d38282c
commit df66d1e445
3 changed files with 195 additions and 0 deletions
+4
View File
@@ -517,6 +517,10 @@ ALERT_WEBHOOK_TIMEOUT = _get_env_int("ALERT_WEBHOOK_TIMEOUT", 5)
ADMIN_USERNAME = _get_env("ADMIN_USERNAME", "admin")
ADMIN_PASSWORD = _get_env("ADMIN_PASSWORD", "admin")
# Signal identification region (affects match ranking; does not filter results)
# Valid values: GLOBAL, EU, US, UK, AU
REGION = _get_env("REGION", "GLOBAL")
def configure_logging() -> None:
"""Configure application logging."""