Files

9 lines
150 B
Batchfile
Raw Permalink Normal View History

@echo off
setlocal
cd /d "%~dp0.."
if exist ".venv\Scripts\python.exe" (
".venv\Scripts\python.exe" app\main.py
) else (
python app\main.py
)