- User-Modell (username, password_hash, role admin/user, is_active) - Standard-Admin-Benutzer wird beim ersten Start automatisch angelegt - JWT-Tokens (HS256) für Benutzer-Sessions, konfigurierbare Ablaufzeit - API-Key bleibt für service-to-service-Calls (backward-compatible) - POST /api/v1/auth/login → JWT-Token - GET /api/v1/auth/me → aktueller Benutzer - CRUD /api/v1/users/ → Benutzerverwaltung (nur Admin) - TUI zeigt Login-Screen beim Start; nach Erfolg → MainScreen - Passwort-Hashing mit bcrypt (python-jose für JWT)
37 lines
1.8 KiB
Plaintext
37 lines
1.8 KiB
Plaintext
# 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
|
||
|
||
# ── Benutzer-Authentifizierung ──────────────────────────────────────────────
|
||
# secret_key: mindestens 32 Zeichen, zufällig generieren (z.B. openssl rand -hex 32)
|
||
SECRET_KEY=change-this-secret-key-min-32-chars!!
|
||
TOKEN_EXPIRE_HOURS=24
|
||
# Standard-Admin-Benutzer (wird beim ersten Start angelegt)
|
||
DEFAULT_ADMIN_USER=admin
|
||
DEFAULT_ADMIN_PASSWORD=admin
|