#!/bin/bash echo "=== MadBase Network Verification ===" echo "" echo "Testing Proxy..." curl -f http://localhost:8000/health && echo " Proxy: PASS" || echo " Proxy: FAIL" echo "" echo "Testing Control Plane..." curl -f http://localhost:8001/health && echo " Control: PASS" || echo " Control: FAIL" echo "" echo "Testing Worker..." curl -f http://localhost:8002/health && echo " Worker: PASS" || echo " Worker: FAIL" echo "" echo "Done."