#!/bin/bash

# This script starts a simple HTTP server for the demo page

echo "Starting demo server on port 8080..."
echo "Open http://localhost:8080 in your browser"
echo "Press Ctrl+C to stop the server"

# Start the server
cd "$(dirname "$0")"
python3 -m http.server 8080