Some checks failed
CD Pipeline / deploy (push) Failing after 59s
- 建立 Gitea Actions CD pipeline (.gitea/workflows/cd.yaml) - 部署模式: rsync Python 檔案至 188 → docker restart (volume mount) - Dockerfile/requirements 變動時自動重建 Docker image - 部署通知: Telegram (開始/成功/失敗) - 健康檢查: https://mo.wooo.work/health (最多 5 次重試) - 同步最新 CLAUDE.md / ADR-008 / memory (2026-04-19) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
56 lines
2.0 KiB
Plaintext
56 lines
2.0 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
|
||
|
||
# ==========================================
|
||
# 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=即時業績_當日
|