mirror of
https://github.com/whyour/qinglong.git
synced 2025-07-27 14:46:06 +08:00
29 lines
838 B
Bash
29 lines
838 B
Bash
#!/usr/bin/env bash
|
|
|
|
## 导入通用变量与函数
|
|
dir_shell=/ql/shell
|
|
. $dir_shell/share.sh
|
|
repo_path="${dir_repo}/SuMaiKaDe_jddockerbot"
|
|
|
|
echo -e "1、安装bot依赖...\n"
|
|
apk --no-cache add -f zlib-dev gcc jpeg-dev python3-dev musl-dev freetype-dev
|
|
echo
|
|
|
|
echo -e "2、下载bot所需文件...\n"
|
|
git clone -b master https://ghproxy.com/https://github.com/SuMaiKaDe/jddockerbot.git $repo_path
|
|
cp -rf "$repo_path/jbot" $dir_root
|
|
cp -f "$repo_path/config/bot.json" "$dir_root/config"
|
|
echo
|
|
|
|
echo -e "3、安装python3依赖...\n"
|
|
pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
|
|
cp -f "$repo_path/jbot/requirements.txt" "$dir_root"
|
|
pip3 install -r requirements.txt
|
|
echo
|
|
|
|
echo -e "4、启动bot程序...\n"
|
|
pm2 restart jbot 2>/dev/null || pm2 start jbot -n $dir_root/jbot --interpreter=python3 -- -m
|
|
echo
|
|
|
|
exit 0
|