8 lines
282 B
Bash
Executable File
8 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Start the AICC capsule testbed bridge over WebSocket (headless).
|
|
# Usage: scripts/run_bridge.sh [port] (default 8765)
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
PORT="${1:-8765}"
|
|
exec testbed/.venv/bin/python -m testbed.bridge --host 127.0.0.1 --port "$PORT"
|