11 lines
333 B
Bash
Executable File
11 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
ROOT=$(CDPATH='' cd -- "$(dirname -- "$0")/.." && pwd)
|
|
cd "$ROOT"
|
|
CODEX_SESSION_ID=${CODEX_SESSION_ID:-${CODEX_THREAD_ID:-not-configured}}
|
|
export CODEX_SESSION_ID
|
|
docker compose -p who_need_help up -d --build --wait
|
|
"$ROOT/scripts/verify-realtime-cluster.sh" compose
|
|
"$ROOT/scripts/verify-beam-runtime.sh" compose
|