#!/bin/bash
# Double-click this file to start the VO Booth.
# It launches a local server in this folder and opens the app in Chrome.
cd "$(dirname "$0")"
echo "Starting VO Booth at http://localhost:8765/vo-booth.html"
open -a "Google Chrome" "http://localhost:8765/vo-booth.html" 2>/dev/null || open "http://localhost:8765/vo-booth.html"
python3 serve.py
