Animation added

This commit is contained in:
2025-11-20 23:16:04 -05:00
parent 6d75c8e94e
commit 9197e464a5
8 changed files with 526 additions and 15 deletions

26
run.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
echo ========================================
echo MAZE GENERATOR - Starting Server
echo ========================================
echo.
REM Check if virtual environment exists
if not exist "venv" (
echo Creating virtual environment...
python -m venv venv
)
REM Activate virtual environment
call venv\Scripts\activate.bat
REM Install requirements if needed
echo Installing/updating dependencies...
pip install -q -r requirements.txt
REM Start the Flask application
echo.
echo Starting Flask server on http://localhost:5000
echo.
echo Press Ctrl+C to stop the server
echo.
python api\app.py