#!/usr/bin/env bash
# Build (unless --no-build) then serve html/ on 0.0.0.0:3121
# Usage: ./serve [--no-build] [--port N] [--host ADDR] [--fetch]
set -euo pipefail
cd "$(dirname "$0")"
exec python -m xgit serve "$@"
