chore(gitignore): add development log file patterns - Add patterns for .log, .out, and .err files - Add wget-log and download.log patterns - Organize under new "Development Logs" section ```
42 lines
1.3 KiB
Bash
Executable File
42 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Deploy AITBC Agent Protocols - With proper permissions
|
|
|
|
set -e
|
|
|
|
echo "🚀 Deploying AITBC Agent Protocols..."
|
|
|
|
# Use existing virtual environment with sudo
|
|
VENV_PATH="/opt/aitbc/cli/venv"
|
|
|
|
# Install dependencies in virtual environment
|
|
echo "Installing dependencies..."
|
|
sudo $VENV_PATH/bin/pip install fastapi uvicorn pydantic cryptography aiohttp
|
|
|
|
# Copy service files
|
|
echo "Setting up systemd services..."
|
|
sudo cp /opt/aitbc/deployment/agent-protocols/aitbc-agent-registry.service /etc/systemd/system/
|
|
sudo cp /opt/aitbc/deployment/agent-protocols/aitbc-agent-coordinator.service /etc/systemd/system/
|
|
|
|
# Enable and start services
|
|
echo "Starting agent services..."
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl enable aitbc-agent-registry
|
|
sudo systemctl enable aitbc-agent-coordinator
|
|
sudo systemctl start aitbc-agent-registry
|
|
sudo systemctl start aitbc-agent-coordinator
|
|
|
|
# Wait for services to start
|
|
sleep 5
|
|
|
|
# Check service status
|
|
echo "Checking service status..."
|
|
sudo systemctl status aitbc-agent-registry --no-pager | head -5
|
|
sudo systemctl status aitbc-agent-coordinator --no-pager | head -5
|
|
|
|
# Test services
|
|
echo "Testing services..."
|
|
curl -s http://localhost:8003/api/health || echo "Agent Registry not responding"
|
|
curl -s http://localhost:8004/api/health || echo "Agent Coordinator not responding"
|
|
|
|
echo "✅ Agent Protocols deployment complete!"
|