Initial public-safe Steerify commit

This commit is contained in:
2026-05-12 17:58:47 -05:00
commit 80239d27a6
9 changed files with 1340 additions and 0 deletions

34
launch.bat Normal file
View File

@@ -0,0 +1,34 @@
@echo off
setlocal
cd /d "%~dp0"
where py >nul 2>nul
if not errorlevel 1 (
set "PYTHON=py"
goto python_found
)
where python >nul 2>nul
if not errorlevel 1 (
set "PYTHON=python"
goto python_found
)
echo Python was not found. Install Python 3 and try again.
pause
exit /b 1
:python_found
echo Installing requirements...
%PYTHON% -m pip install -r requirements.txt
if errorlevel 1 (
echo Failed to install requirements.
pause
exit /b 1
)
echo Launching spotify.py...
%PYTHON% spotify.py
pause