Some checks failed
CD Pipeline / deploy (push) Failing after 5m18s
🔴 Critical - auto_heal_service: 補 import re + sqlalchemy.text + 修正 orchestrator 變數名 + autoheal_playbook→playbooks 表名 + _alert_and_store cooldown 修復 - aider_heal_executor: shell injection 改 shell=False + list 參數 - docker-compose: DISABLE_LOGIN 改 env var + 移除密碼 fallback + POSTGRES_HOST 修正 - app.py: /api/backup /api/run_task 等 6 個管理 API 加 @login_required - config.py + pg_sync + e2e_test: 移除 wooo_pg_2026 hardcoded 密碼 fallback - pg_backup.sh: 移除 TELEGRAM_TOKEN= 中間變數,直接用 $TELEGRAM_BOT_TOKEN - migration 014: trigger_pattern→match_pattern + 補 error_type NOT NULL 欄位 🟡 High - telegram_bot_service: str(e) 改通用訊息 + session try/finally + 移除 pa:/pr: 舊 callback - run_scheduler: ElephantAlpha thread 死亡監控 + 自動重啟 + Telegram 告警 + agent_context 03:30 TTL 定時清理任務 - openclaw_learning_service: build_rag_context 兩路徑加 .limit(200) - hooks: commit-quality + momo-prod-guard 空 catch 改 stderr+exit(1) - scripts/code_review: auto_yes 預設改 false - db_backup_service: PGPASSWORD 透過 env dict 傳遞 📦 Migrations - 013_autoheal: 修正建表順序 playbooks→incidents(外鍵前向引用) - 018_add_missing_indexes: heal_logs/incidents 外鍵索引 + cleanup_expired_agent_context() 🟢 Infrastructure - requirements.txt: 加版本下界 Flask>=2.3 SQLAlchemy>=1.4 等 - cd.yaml: 新增 run_scheduler.py + run_telegram_bot.py 監聽路徑 - .gitignore: insert_playbook_local.py 加入忽略 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
110 lines
3.9 KiB
Plaintext
110 lines
3.9 KiB
Plaintext
# ==========================================
|
||
# MOMO 監控系統 - 環境變數配置模板
|
||
# ==========================================
|
||
# 複製此檔案為 .env 並填入實際值
|
||
# 注意:.env 檔案已加入 .gitignore,不會被提交到版本控制
|
||
|
||
# ==========================================
|
||
# 安全設定
|
||
# ==========================================
|
||
LOGIN_PASSWORD=your_strong_password_here
|
||
SECRET_KEY=your_flask_secret_key_here
|
||
|
||
# ==========================================
|
||
# Telegram Bot 設定
|
||
# ==========================================
|
||
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
|
||
TELEGRAM_CHAT_IDS=["chat_id_1","chat_id_2","chat_id_3"]
|
||
|
||
# ==========================================
|
||
# Line Notify 設定
|
||
# ==========================================
|
||
LINE_CHANNEL_ACCESS_TOKEN=your_line_channel_access_token
|
||
LINE_GROUP_ID=your_line_group_id
|
||
|
||
# ==========================================
|
||
# Email (SMTP) 設定
|
||
# ==========================================
|
||
EMAIL_HOST=smtp.gmail.com
|
||
EMAIL_PORT=587
|
||
EMAIL_HOST_USER=your_email@gmail.com
|
||
EMAIL_HOST_PASSWORD=your_email_app_password
|
||
EMAIL_SENDER=your_email@gmail.com
|
||
EMAIL_RECEIVER=receiver_email@gmail.com
|
||
|
||
# ==========================================
|
||
# 網路設定
|
||
# ==========================================
|
||
PUBLIC_URL=http://your_server_ip:port
|
||
NGROK_AUTH_TOKEN=your_ngrok_auth_token
|
||
|
||
# ==========================================
|
||
# 通訊模組設定(從環境變數讀取)
|
||
# ==========================================
|
||
|
||
# --- Alert Webhook ---
|
||
ALERT_WEBHOOK_USER=alertmanager
|
||
ALERT_WEBHOOK_PASSWORD=your_secure_webhook_password_here
|
||
|
||
# --- GitLab CI/CD ---
|
||
GITLAB_URL=http://192.168.0.110:8929
|
||
GITLAB_TOKEN=your_gitlab_token_here
|
||
GITLAB_PROJECT_ID=1
|
||
|
||
# --- Telegram Bot ---
|
||
|
||
# ==========================================
|
||
# HTTPS 設定(生產環境)
|
||
# ==========================================
|
||
# 如果部署在 HTTPS 環境,設為 true
|
||
USE_HTTPS=false
|
||
|
||
# ==========================================
|
||
# Google Drive 自動匯入設定
|
||
# ==========================================
|
||
# 說明:系統會自動從 Google Drive 下載、匯入並刪除當日業績 Excel 檔案
|
||
# 設定方式:請參考 GOOGLE_DRIVE_SETUP.md
|
||
# 認證檔案位置:config/google_credentials.json
|
||
# Token 檔案位置:config/google_token.pickle(首次認證後自動產生)
|
||
GDRIVE_FOLDER_PATH=業績報表/當日業績
|
||
GDRIVE_FILE_PATTERN=即時業績_當日
|
||
|
||
# ==========================================
|
||
# Elephant Alpha AI Agent Super Orchestrator Settings
|
||
# ==========================================
|
||
# Description: Elephant Alpha (100B parameter model) for autonomous AI agent coordination
|
||
# Provider: OpenRouter AI
|
||
# Documentation: https://openrouter.ai/docs/quick-start
|
||
|
||
# OpenRouter API Configuration
|
||
OPENROUTER_API_KEY=sk-or-v1-your-openrouter-api-key-here
|
||
ELEPHANT_ALPHA_MODEL=openrouter/elephant-alpha
|
||
|
||
# Elephant Alpha Behavior Configuration
|
||
ELEPHANT_ALPHA_CONFIDENCE_THRESHOLD=0.7
|
||
ELEPHANT_ALPHA_MAX_AUTONOMOUS_DECISIONS_PER_HOUR=10
|
||
ELEPHANT_ALPHA_TIMEOUT_SECONDS=180
|
||
ELEPHANT_ALPHA_CONTEXT_WINDOW=256000
|
||
|
||
# Autonomous Engine Settings
|
||
ELEPHANT_ALPHA_LEARNING_RATE=0.1
|
||
ELEPHANT_ALPHA_PERFORMANCE_TRACKING=true
|
||
ELEPHANT_ALPHA_AUTO_ESCALATION_ENABLED=true
|
||
|
||
# Integration Settings
|
||
ELEPHANT_ALPHA_HERMES_URL=http://192.168.0.111:11434
|
||
ELEPHANT_ALPHA_HERMES_MODEL=hermes3:latest
|
||
ELEPHANT_ALPHA_NEMOTRON_NIM_ENDPOINT=https://integrate.api.nvidia.com/v1
|
||
ELEPHANT_ALPHA_OPENCLAW_GEMINI_ENDPOINT=https://generativelanguage.googleapis.com/v1beta
|
||
|
||
# Debug and Monitoring
|
||
ELEPHANT_ALPHA_DEBUG_MODE=false
|
||
ELEPHANT_ALPHA_METRICS_ENABLED=true
|
||
ELEPHANT_ALPHA_AUDIT_LOGGING=true
|
||
|
||
# ── System Maintenance API ──────────────────────────────────────────────────
|
||
# X-Internal-Key 標頭認證金鑰(必填)
|
||
# 用於 /api/system/cleanup/* 和 /api/system/health 等維護路由。
|
||
# 建議使用 openssl rand -hex 32 生成。
|
||
INTERNAL_API_KEY=your-secret-internal-key-here
|