t / run-applio.bat
leey00nsu's picture
t
f11c739
raw
history blame contribute delete
No virus
185 Bytes
@echo off
setlocal
title Applio
if not exist env (
echo Please run 'run-install.bat' first to set up the environment.
pause
exit /b 1
)
env\python.exe app.py --open
pause