#!/usr/bin/env bash
# Voidbunny — one-command installer for the self-hosted Claude Code / Codex / Gemini app.
# Project: https://github.com/Ingeniiious/voidbunny-app
#
# Usage:  curl -fsSL voidbunny.xyz/install.sh | bash
#
# Want to read it first? You should. Pipe to less, or save it locally:
#   curl -fsSL voidbunny.xyz/install.sh -o install.sh && less install.sh
#
# NOTE: This is a placeholder served from the marketing site. The real
# installer is tracked at https://github.com/Ingeniiious/voidbunny-app —
# replace the contents of this file in site/public/install.sh once it's
# ready and re-deploy.

set -euo pipefail

cat <<'BANNER'

  Voidbunny installer — coming soon.

  The one-command installer is still being assembled. In the meantime,
  follow the manual setup steps at:

      https://github.com/Ingeniiious/voidbunny-app#install

  Star the repo to get notified when the curl-pipe-bash flow lands.

BANNER

exit 0
