Files
MCM/.env.example
itdrui.de 0e2a8a6bc0 feat: TUI als Browser-App via textual serve
TUI von direkten Service-Importen auf httpx API-Calls umgestellt.
Neue tui/api_client.py als schlanker async HTTP-Client. Background-
Worker pollt API alle 5s für Echtzeit-Updates. Neuer tui_standalone.py
Entry-Point für 'textual serve --port 8001 tui_standalone.py'.
2026-03-04 20:45:55 +01:00

29 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# MCM MultiCustomerMessenger Konfiguration
# Datei kopieren: cp .env.example .env
# ── API ────────────────────────────────────────────────────
API_KEY=changeme-secret-key
HOST=0.0.0.0
PORT=8000
DEBUG=false
# ── Telegram ───────────────────────────────────────────────
TELEGRAM_TOKEN=
# ── WhatsApp (Green API) ───────────────────────────────────
# Konto anlegen unter: https://console.green-api.com
WHATSAPP_ID_INSTANCE=
WHATSAPP_API_TOKEN=
# ── SMS / USB-Modem ────────────────────────────────────────
SMS_PORT=/dev/ttyUSB0
SMS_BAUD_RATE=115200
SMS_ENABLED=false
# ── Datenbank ──────────────────────────────────────────────
DATABASE_URL=sqlite:///./mcm.db
# ── TUI Web-Modus (textual serve) ──────────────────────────
# Starten: .venv/bin/python -m textual serve --host 0.0.0.0 --port $WEB_PORT tui_standalone.py
WEB_PORT=8001