12 lines
247 B
Batchfile
12 lines
247 B
Batchfile
@echo off
|
|
cd /d F:\python\WeChatRobot
|
|
|
|
echo [INFO] Pulling latest code...
|
|
git pull
|
|
|
|
echo [INFO] Installing Python dependencies...
|
|
pip install -r requirements.txt
|
|
|
|
echo [INFO] Starting application...
|
|
start python F:\python\WeChatRobot\main.py -c 8
|