mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-24 05:34:37 +00:00
- Fix railway/gptme.sh calling nonexistent inject_env_vars_railway (should be inject_env_vars) - Fix northflank claude/openclaw/aider using inject_env_vars_local (only writes .zshrc) instead of inject_env_vars_northflank (writes both .bashrc and .zshrc) - Update Railway README to list NanoClaw and gptme agents - Update Northflank README to list all 8 implemented agents and add env var table - Mark railway/gptme as implemented in manifest.json Agent: ux-engineer Co-authored-by: A <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
66 lines
2 KiB
Bash
Executable file
66 lines
2 KiB
Bash
Executable file
#!/bin/bash
|
|
# shellcheck disable=SC2154
|
|
set -eo pipefail
|
|
|
|
# Source common functions - try local file first, fall back to remote
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" 2>/dev/null && pwd)"
|
|
# shellcheck source=northflank/lib/common.sh
|
|
if [[ -f "${SCRIPT_DIR}/lib/common.sh" ]]; then
|
|
source "${SCRIPT_DIR}/lib/common.sh"
|
|
else
|
|
eval "$(curl -fsSL https://raw.githubusercontent.com/OpenRouterTeam/spawn/main/northflank/lib/common.sh)"
|
|
fi
|
|
|
|
log_info "OpenClaw on Northflank"
|
|
echo ""
|
|
|
|
# 1. Ensure Northflank CLI and API token
|
|
ensure_northflank_cli
|
|
ensure_northflank_token
|
|
|
|
# 2. Get service and project names, then create service
|
|
SERVER_NAME=$(get_server_name)
|
|
create_server "${SERVER_NAME}"
|
|
|
|
# 3. Wait for base tools
|
|
wait_for_cloud_init
|
|
|
|
# 4. Install openclaw via bun
|
|
log_warn "Installing openclaw..."
|
|
run_server "source ~/.bashrc && bun install -g openclaw"
|
|
log_info "OpenClaw installed"
|
|
|
|
# 5. Get OpenRouter API key
|
|
echo ""
|
|
if [[ -n "${OPENROUTER_API_KEY:-}" ]]; then
|
|
log_info "Using OpenRouter API key from environment"
|
|
else
|
|
OPENROUTER_API_KEY=$(get_openrouter_api_key_oauth 5180)
|
|
fi
|
|
|
|
# 6. Get model preference
|
|
MODEL_ID=$(get_model_id_interactive "openrouter/auto" "Openclaw") || exit 1
|
|
|
|
# 7. Inject environment variables into shell configs
|
|
log_warn "Setting up environment variables..."
|
|
|
|
inject_env_vars_northflank \
|
|
"OPENROUTER_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"ANTHROPIC_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"ANTHROPIC_BASE_URL=https://openrouter.ai/api"
|
|
|
|
# 8. Configure openclaw
|
|
setup_openclaw_config "${OPENROUTER_API_KEY}" "${MODEL_ID}" \
|
|
upload_file \
|
|
run_server
|
|
|
|
echo ""
|
|
log_info "Northflank service setup completed successfully!"
|
|
log_info "Service: ${SERVER_NAME} (Project: ${NORTHFLANK_PROJECT_NAME})"
|
|
echo ""
|
|
|
|
# 9. Start openclaw gateway in background and launch TUI
|
|
log_warn "Starting openclaw..."
|
|
run_server "source ~/.bashrc && nohup openclaw gateway > /tmp/openclaw-gateway.log 2>&1 &"
|
|
sleep 2
|
|
interactive_session "source ~/.bashrc && openclaw tui"
|