Integrate Meilisearch + Redis deeply for cache, locks, searchable decisions/insights, and health telemetry

This commit is contained in:
2026-03-01 16:20:30 -08:00
parent 1ca35733cf
commit 2cc7dcb0d9
6 changed files with 112 additions and 10 deletions

View File

@@ -42,6 +42,9 @@ class Settings:
redis_url = os.getenv("REDIS_URL", "redis://10.30.20.70:6379/0")
meili_url = os.getenv("MEILI_URL", "http://10.30.20.142:7700")
meili_api_key = os.getenv("MEILI_API_KEY", "")
db_path = os.getenv("DB_PATH", "sqlite:///./bot.db")
host = os.getenv("APP_HOST", "0.0.0.0")
port = int(os.getenv("APP_PORT", "8089"))