#!/bin/sh
# Rebuild and restart on source changes.
# Requires `entr(1)`.
find . -name '*.go' -o -name '*.html' -o -name '*.css' \
  | entr -r go run . -dev -scan-path ~/src/radiant -non-bare -title "code.radiant.computer" -description "Radiant computer repositories" "$@"
