Files

28 lines
932 B
Bash
Raw Permalink Normal View History

# 從 @BotFather 取得的 Bot Token
BOT_TOKEN=123456789:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# 白名單聊天(逗號分隔 chat_id);不在名單的聊天指令與按鈕都會被擋
ALLOWED_CHAT_IDS=-1002488036686,-4679836160
# 每週自動發報名(cron 語法,時區 Asia/Taipei);留空則不排程
SIGNUP_CRON=0 10 * * 1
SIGNUP_CRON_CHAT_ID=-4679836160
# 記分板預設目標分數
TARGET_SCORE=21
# 隨機配對時不會被抽去當計分人的名字(逗號分隔,對 attendance.nickname);留空則所有休息的人都可能被抽到
SCORER_EXCLUDE=景涵
# 記分板狀態持久化檔案
DATA_FILE=./data/matches.json
# MariaDB / MySQL(與 badminton-scoreboard 共用)
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=root
DB_PASSWORD=your_password
DB_DATABASE=badminton
DB_HISTORY_TABLE=history
# Node-RED(舊版報名流程切換用)
NODERED_URL=http://192.168.5.45:1880