add self-hosting docs and demo for Plano-Orchestrator

This commit is contained in:
Adil Hafeez 2026-03-11 15:46:47 -07:00
parent 8edf686665
commit 747946fb39
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
4 changed files with 192 additions and 2 deletions

View file

@ -31,8 +31,13 @@ start_demo() {
fi
# Step 4: Start Plano
echo "Starting Plano with config.yaml..."
planoai up config.yaml
PLANO_CONFIG="config.yaml"
if [ "$1" == "--local-orchestrator" ]; then
PLANO_CONFIG="config_local_orchestrator.yaml"
echo "Using local orchestrator config..."
fi
echo "Starting Plano with $PLANO_CONFIG..."
planoai up "$PLANO_CONFIG"
# Step 5: Start agents natively
echo "Starting agents..."