- Updated configuration to enforce Redis caching for notified articles, removing memory cache options. - Enhanced wallamonitor.py to load Redis cache settings and handle errors more effectively. - Implemented new API endpoints for clearing Redis cache and retrieving Telegram forum topics. - Improved frontend components to support fetching and displaying available Telegram threads. - Added functionality for clearing cache from the UI, ensuring better management of notified articles.
13 lines
326 B
YAML
13 lines
326 B
YAML
telegram_token: ""
|
|
telegram_channel: "@canal_o_grupo"
|
|
|
|
# Configuración del cache de artículos notificados (Redis requerido)
|
|
# Almacena en Redis con TTL de 7 días
|
|
cache:
|
|
type: "redis"
|
|
redis:
|
|
host: "localhost" # En Docker usar: "redis"
|
|
port: 6379
|
|
db: 0
|
|
password: null # null o string con la contraseña
|