Files
2026-04-11 00:04:09 -05:00

32 lines
714 B
Batchfile

@echo off
echo ====================================
echo Product Finder Quiz - Flask App
echo ====================================
echo.
echo Checking Python installation...
python --version
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python 3.8 or higher
pause
exit /b 1
)
echo.
echo Installing dependencies...
pip install -r requirements.txt
if errorlevel 1 (
echo ERROR: Failed to install dependencies
pause
exit /b 1
)
echo.
echo Starting Flask application...
echo.
echo Application will be available at:
echo http://localhost:8080/quiz
echo.
echo Press Ctrl+C to stop the server
echo.
python app.py
pause