Skip to content

Instantly share code, notes, and snippets.

View harsh1thh's full-sized avatar
😚

Harshith Bheempalli harsh1thh

😚
View GitHub Profile
@harsh1thh
harsh1thh / install.sh
Last active October 8, 2025 11:16
Testtttttt
#!/usr/bin/env bash
set -euo pipefail
# Usage: ./install.sh example.com your-api-key
HOSTNAME="${1:-example.com}"
API_KEY="${2:-}"
if [ -z "$HOSTNAME" ]; then
echo "Usage: $0 <your-domain-or-ip> [api-key]"
exit 1