#!/bin/bash # Run Hero Supervisor with OpenRPC server only (no Mycelium) # # This starts the supervisor with: # - OpenRPC HTTP server on port 3030 # - Redis connection for job queuing # - No Mycelium integration # # Usage: # ./run_supervisor_simple.sh echo "🚀 Starting Hero Supervisor (OpenRPC only)" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" echo " OpenRPC Server: http://localhost:3030" echo " Redis: redis://localhost:6379" echo " Mycelium: Disabled" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" echo "" # Set environment variables export RUST_LOG=info export MYCELIUM_URL="" # Disable Mycelium # Build and run cargo run --bin supervisor --no-default-features --features cli -- \ --redis-url redis://localhost:6379 \ --port 3030