14 lines
396 B
Bash
Executable File
14 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
# Adagio Startup Script
|
|
# Uses API mode on port 8646 (configured in config.yaml)
|
|
|
|
export HERMES_HOME=/root/wizards/adagio/home
|
|
export ADAGIO_MODE=true
|
|
|
|
cd /root/wizards/adagio/hermes-agent
|
|
source .venv/bin/activate
|
|
|
|
# Note: Port 8646 is configured in config.yaml under api_server.extra.port
|
|
# Run gateway - port is read from config, not command line
|
|
exec hermes gateway run --replace
|