02-ago: [proyecto] vigilancia - integra middleware Alexa (alexa_notify.js/VoiceMonkey) + .env con credenciales de Telegram y VoiceMonkey + tests 18/18

This commit is contained in:
minguezsanzjuanjose
2026-08-02 13:17:45 +02:00
parent e75649f7e6
commit 75de5c613f
4 changed files with 71 additions and 0 deletions

View File

@@ -27,4 +27,8 @@ HORA_INICIO = int(os.getenv("HORA_INICIO", 0))
HORA_FIN = int(os.getenv("HORA_FIN", 23))
COOLDOWN = int(os.getenv("COOLDOWN", 30))
WEBHOOK_ALEXA = os.getenv("WEBHOOK_ALEXA", "").strip()
VOICEMONKEY_TOKEN = os.getenv("VOICEMONKEY_TOKEN", "").strip()
VOICEMONKEY_DEVICE = os.getenv("VOICEMONKEY_DEVICE", "").strip()
ALEXA_NODE = os.getenv("ALEXA_NODE", "node")
ALEXA_NOTIFY_SCRIPT = os.getenv("ALEXA_NOTIFY_SCRIPT", "").strip()
SNAPSHOT_DIR = os.getenv("SNAPSHOT_DIR", "snapshots")