🚀 Initial commit: BSN Chatbot — Multi-Channel Intake System

WhatsApp webhook, admin dashboard, public frontend, media handling, LLM auto-summarize, hall/stand detection, iOS-style backend
This commit is contained in:
Hermes Agent
2026-06-17 13:22:19 +02:00
commit bbefb8807b
6 changed files with 2191 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# Start the BSN Chatbot Intake server (uses venv Python for Flask + requests)
set -a
source "$(dirname "$0")/.env"
set +a
echo "META_TOKEN set: $([ -n "$META_TOKEN" ] && echo 'YES' || echo 'NO')"
echo "PHONE_NUMBER_ID: $META_PHONE_NUMBER_ID"
echo ""
exec /home/hermes/venv/bin/python3 "$(dirname "$0")/app.py"