14 lines
229 B
Batchfile
14 lines
229 B
Batchfile
@echo off
|
|
cd /d F:\python\WeChatRobot
|
|
|
|
echo [INFO] 拉取最新代码...
|
|
git pull
|
|
|
|
echo [INFO] 安装 Python 依赖...
|
|
pip install -r requirements.txt
|
|
|
|
echo [INFO] 启动应用...
|
|
python F:\python\WeChatRobot\main.py -c 8
|
|
|
|
pause
|