File size: 378 Bytes
2021f39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd)
cd "$ROOT_DIR"
echo "🔧 Ensuring scripts are executable..."
chmod +x elizabeth/deployment_configs/serve_vllm_no_steering.sh || true
chmod +x elizabeth/deployment_configs/elizabeth_cli_wrapper.sh || true
echo "🚀 Starting supervisord..."
exec supervisord -c supervisord.conf
|