Files
microdao-daarion/scripts/start-phase2.sh
Apple fca48b3eb0 feat(node2): Complete NODE2 setup - guardian, agents, swapper models
- Node-guardian running on MacBook and updating metrics
- NODE2 agents (Atlas, Greeter, Oracle, Builder Bot) assigned to node-2-macbook-m4max
- Swapper models displaying correctly (8 models)
- DAGI Router agents showing with correct status (3 active, 1 stale)
- Router health check using node_cache for remote nodes
2025-12-02 07:07:58 -08:00

47 lines
983 B
Bash
Executable File

#!/bin/bash
# Start Phase 2 Agent Integration Services
echo "🚀 Starting DAARION Phase 2 Services..."
echo ""
# Check if docker network exists
if ! docker network inspect daarion >/dev/null 2>&1; then
echo "📦 Creating daarion network..."
docker network create daarion
fi
# Start services
echo "📦 Building and starting services..."
docker-compose -f docker-compose.agents.yml up -d --build
echo ""
echo "⏳ Waiting for services to be healthy..."
sleep 10
echo ""
echo "✅ Phase 2 services started!"
echo ""
echo "Services:"
echo " - agent-filter: http://localhost:7005"
echo " - router: http://localhost:8000"
echo " - agent-runtime: http://localhost:7006"
echo ""
echo "Check status:"
echo " docker ps | grep -E '(agent-filter|router|agent-runtime)'"
echo ""
echo "Check logs:"
echo " docker logs -f agent-filter"
echo " docker logs -f router"
echo " docker logs -f agent-runtime"
echo ""
echo "Run tests:"
echo " ./scripts/test-phase2-e2e.sh"