Files
microdao-daarion/scripts/start-phase2.sh
Apple 744c149300
Some checks failed
Build and Deploy Docs / build-and-deploy (push) Has been cancelled
Add automated session logging system
- Created logs/ structure (sessions, operations, incidents)
- Added session-start/log/end scripts
- Installed Git hooks for auto-logging commits/pushes
- Added shell integration for zsh
- Created CHANGELOG.md
- Documented today's session (2026-01-10)
2026-01-10 04:53:17 -08:00

56 lines
992 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"