#!/bin/sh
set -eu

dashboard=http://localhost:8096/
if command -v xdg-open >/dev/null 2>&1; then
    exec xdg-open "$dashboard"
fi
if command -v gio >/dev/null 2>&1; then
    exec gio open "$dashboard"
fi
printf '%s\n' "Open $dashboard in a web browser."
