9 lines
171 B
Batchfile
9 lines
171 B
Batchfile
@echo off
|
|
cd /d %~dp0
|
|
echo 正在启动WeChatRobot管理后台...
|
|
|
|
echo [INFO] 正在安装Python依赖...
|
|
pip install -r requirements.txt
|
|
|
|
python dashboard_start.py
|
|
pause |