#!/bin/sh
# Serves this directory, wherever it lives, so the ES modules load.
# Usage: ./serve.sh [port]   (default 8765)
cd "$(dirname "$0")" || exit 1
PORT="${1:-8765}"
echo "Brand tools at http://localhost:${PORT}/"
exec python3 -m http.server "$PORT"
