OpenManus/run.bat
2025-03-11 13:48:00 +08:00

17 lines
266 B
Batchfile

@echo off
setlocal
cd /d %~dp0
call venv\Scripts\activate.bat
echo Trying to sync with GitHub repository...
git pull origin front-end || (
echo Failed to sync with GitHub, skipping update...
)
echo Starting Python application...
python app.py
pause
endlocal