@echo off
title Promo Tool
cd /d "%~dp0"

where py >nul 2>nul && (py -3 -m streamlit run app.py --server.port 8502 & goto :END)
where python >nul 2>nul && (python -m streamlit run app.py --server.port 8502 & goto :END)

echo.
echo [ERROR] Python not found on PATH. Install Python 3.12.
echo.
pause

:END
pause
