- App-level password auth via Flask session (APP_PASSWORD in .env) - login_required decorator on all routes - Login page, logout button in navbar, 7-day session lifetime - Upgrade musik_rechte_advisor and negotiator from Opus 4.0 to Opus 4.6 - Fix orchestrator session cookie overflow (kb/prompts no longer stored in session) - Change app port from 5000 to 5050 (5000 occupied by Zou/Kitsu) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
2 KiB
Text
40 lines
2 KiB
Text
# ─────────────────────────────────────────────────────────────────────────────
|
|
# App Login Password
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
APP_PASSWORD=change-me
|
|
|
|
# Email Integration Configuration
|
|
# Gmail Example:
|
|
# 1. Enable 2-Factor Authentication on your Google Account
|
|
# 2. Generate an App-Specific Password: https://myaccount.google.com/apppasswords
|
|
# 3. Copy the 16-character password below
|
|
|
|
IMAP_SERVER=imap.gmail.com
|
|
SMTP_SERVER=smtp.gmail.com
|
|
EMAIL_ADDRESS=your-email@gmail.com
|
|
EMAIL_PASSWORD=your-app-specific-password
|
|
IMAP_PORT=993
|
|
SMTP_PORT=587
|
|
|
|
# Other common providers:
|
|
# Outlook/Office365:
|
|
# IMAP: imap-mail.outlook.com (Port 993)
|
|
# SMTP: smtp-mail.outlook.com (Port 587)
|
|
# Yahoo:
|
|
# IMAP: imap.mail.yahoo.com (Port 993)
|
|
# SMTP: smtp.mail.yahoo.com (Port 587)
|
|
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# Telegram Bot Configuration
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# 1. Create a bot via @BotFather on Telegram
|
|
# 2. Send /newbot and follow instructions
|
|
# 3. Copy the Bot Token (e.g., 123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11)
|
|
# 4. Get your User ID via @userinfobot (send /start)
|
|
# 5. Add your User ID to TELEGRAM_ALLOWED_USERS (comma-separated for multiple)
|
|
|
|
TELEGRAM_BOT_TOKEN=your-bot-token-here
|
|
TELEGRAM_ALLOWED_USERS=123456789,987654321
|
|
|
|
# Optional: Custom bot name for QR code
|
|
TELEGRAM_BOT_USERNAME=your_bot_name_bot
|