legen / start.bat
RafaG's picture
Upload 31 files
f0cf837 verified
raw
history blame contribute delete
241 Bytes
@echo off
if not exist ".venv" (
echo Virtual environment not found. Please run install.bat first.
pause
exit /b
)
echo Activate venv...
call .venv\Scripts\activate
echo Starting LeGen WebUI...
python app.py
pause