Last updated: 2026-04-04
Platform: Raspberry Pi 5 (arm64), OpenClaw agent
Status: Tested and working
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # EverClaw router + proxy service management | |
| # Usage: ./start-services.sh {start|stop|status|restart} | |
| source ~/.morpheus/env.sh 2>/dev/null || true | |
| do_start() { | |
| echo "Stopping existing instances..." | |
| pkill -f "proxy-router" 2>/dev/null || true | |
| pkill -f "morpheus-proxy" 2>/dev/null || true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # EverClaw pre-flight validation script | |
| # Run before opening any P2P session | |
| set -e | |
| EVERCLAW_RPC="${EVERCLAW_RPC:-https://base-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY}" | |
| WALLET="${MORPHEUS_WALLET_ADDRESS:-REPLACE_WITH_WALLET}" | |
| MOR_TOKEN="0x7431aDa8a591C955a994a21710752EF9b882b8e3" | |
| PROXY_KEY="${MORPHEUS_PROXY_API_KEY:-}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # EverClaw/P2P Router + Proxy Environment Variables | |
| # Copy to ~/.morpheus/env.sh and fill in real values | |
| # Source this file before starting the proxy: source ~/.morpheus/env.sh | |
| # ===== RPC ===== | |
| # Base mainnet RPC — get free key at https://www.alchemy.com | |
| export EVERCLAW_RPC="https://base-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY" | |
| # ===== Proxy Auth ===== | |
| # Generate a strong random key for proxy authentication |