mirror of
https://github.com/katanemo/plano.git
synced 2026-05-07 23:02:43 +02:00
11 lines
227 B
Bash
Executable file
11 lines
227 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
export PLANO_URL="${PLANO_URL:-http://localhost:12000}"
|
|
|
|
echo "Running session pinning demo..."
|
|
echo "PLANO_URL=$PLANO_URL"
|
|
echo ""
|
|
|
|
python3 "$SCRIPT_DIR/demo.py"
|