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

27
run.sh Normal file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
echo "========================================"
echo " MAZE GENERATOR - Starting Server"
echo "========================================"
echo ""
# Check if virtual environment exists
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python3 -m venv venv
fi
# Activate virtual environment
source venv/bin/activate
# Install requirements if needed
echo "Installing/updating dependencies..."
pip install -q -r requirements.txt
# 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