#!/usr/bin/env bash set -euo pipefail # obserae — quick install (get.obserae.com) # Usage: curl -fsSL https://get.obserae.com | bash # # This subdomain serves this script and nothing else. It is fetched over curl # and piped to bash to deploy obserae. The Content-Type is text/html (the file # is named index.html so nginx serves it at the bare domain root); this has no # effect when piped to bash. # # TODO: implement the real deployment logic (pull image / docker compose up, # initial config, etc.). Until then this stub fails loudly so nothing runs # silently. echo "obserae install script (get.obserae.com) is not implemented yet." >&2 exit 1