mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
Add comprehensive macOS deployment support for running headroom proxy as a persistent background service using LaunchAgent. This enables automatic startup, crash recovery, and proper lifecycle management for local development environments. Files added: - examples/deployment/macos-launchagent/com.headroom.proxy.plist.template - examples/deployment/macos-launchagent/install.sh (shellcheck-clean) - examples/deployment/macos-launchagent/uninstall.sh (shellcheck-clean) - examples/deployment/macos-launchagent/shell-integration.sh (bash + zsh) - examples/deployment/macos-launchagent/README.md - docs/macos-deployment.md Key features: - Configurable port via HEADROOM_PROXY_PORT environment variable (default: 8787) - Automated installation and uninstallation scripts - Shell integration supporting both bash and zsh - Comprehensive documentation with troubleshooting guide - All shell scripts are shellcheck-clean (zero errors, warnings, or info messages) Files modified: - .gitignore: Added CLAUDE.md to prevent committing local config - docs/README.md: Added Deployment & Operations section with navigation entry AI review: Pending (will be run by pre-commit hook) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
74 lines
2.3 KiB
Bash
Executable file
74 lines
2.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Headroom Proxy Shell Integration
|
|
#
|
|
# Automatically sets ANTHROPIC_BASE_URL if the headroom proxy is running.
|
|
# Supports both bash and zsh.
|
|
#
|
|
# Usage:
|
|
# Add to ~/.bashrc or ~/.zshrc:
|
|
#
|
|
# export HEADROOM_PROXY_PORT=8787 # Optional: customize port (default: 8787)
|
|
# source /path/to/shell-integration.sh
|
|
#
|
|
# This script will:
|
|
# 1. Check if the proxy is running on the configured port
|
|
# 2. If running, set ANTHROPIC_BASE_URL
|
|
# 3. If not running, try to start the LaunchAgent
|
|
# 4. Provide helpful status messages (only on first load)
|
|
#
|
|
|
|
# Configuration: Port can be customized via environment variable
|
|
HEADROOM_PROXY_PORT="${HEADROOM_PROXY_PORT:-8787}"
|
|
HEADROOM_PLIST_LABEL="com.headroom.proxy"
|
|
USER_UID=$(id -u)
|
|
|
|
# Prevent duplicate loading (bash and zsh compatible)
|
|
if [[ -n "${HEADROOM_SHELL_INTEGRATION_LOADED:-}" ]]; then
|
|
return 0
|
|
fi
|
|
export HEADROOM_SHELL_INTEGRATION_LOADED=1
|
|
|
|
# Check if proxy is running (fast path using lsof)
|
|
_headroom_proxy_running() {
|
|
lsof -iTCP:"${HEADROOM_PROXY_PORT}" -sTCP:LISTEN -t >/dev/null 2>&1
|
|
}
|
|
|
|
# Try to start the LaunchAgent if not running
|
|
_headroom_start_proxy() {
|
|
local plist_path="${HOME}/Library/LaunchAgents/${HEADROOM_PLIST_LABEL}.plist"
|
|
|
|
# Check if LaunchAgent is installed
|
|
if [[ ! -f "${plist_path}" ]]; then
|
|
return 1
|
|
fi
|
|
|
|
# Try to bootstrap the LaunchAgent (idempotent - won't fail if already loaded)
|
|
if launchctl bootstrap "gui/${USER_UID}" "${plist_path}" 2>/dev/null; then
|
|
# Wait a moment for service to start
|
|
sleep 1
|
|
return 0
|
|
fi
|
|
|
|
return 1
|
|
}
|
|
|
|
# Main logic
|
|
if _headroom_proxy_running; then
|
|
# Proxy is running - set ANTHROPIC_BASE_URL
|
|
export ANTHROPIC_BASE_URL="http://localhost:${HEADROOM_PROXY_PORT}"
|
|
else
|
|
# Proxy not running - try to start it
|
|
if _headroom_start_proxy && _headroom_proxy_running; then
|
|
# Successfully started - set ANTHROPIC_BASE_URL
|
|
export ANTHROPIC_BASE_URL="http://localhost:${HEADROOM_PROXY_PORT}"
|
|
echo "✓ Headroom proxy started on port ${HEADROOM_PROXY_PORT}"
|
|
else
|
|
# Could not start - provide helpful message
|
|
echo "⚠ Headroom proxy not running on port ${HEADROOM_PROXY_PORT}"
|
|
echo " Install with: cd /path/to/headroom/examples/deployment/macos-launchagent && ./install.sh"
|
|
fi
|
|
fi
|
|
|
|
# Cleanup helper functions (don't pollute shell namespace)
|
|
unset -f _headroom_proxy_running _headroom_start_proxy
|