This repository has been archived on 2026-02-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cvc_checker/checker/scripts/start_bot.sh
2026-01-06 12:06:12 +08:00

12 lines
280 B
Bash
Executable File

#!/bin/bash
# 启动 Telegram Bot
# 检查是否安装了 python-telegram-bot
if ! python -c "import telegram" &> /dev/null; then
echo "📦 安装 Bot 依赖..."
uv pip install "python-telegram-bot>=20.0"
fi
echo "🚀 启动 Checker Bot..."
python -m checker.bot.main