14 lines
316 B
Bash
Executable File
14 lines
316 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
|
|
echo "[whispergate] building/starting no-reply API container"
|
|
docker compose up -d --build whispergate-no-reply-api
|
|
|
|
echo "[whispergate] health check"
|
|
curl -sS http://127.0.0.1:8787/health
|
|
|
|
echo "[whispergate] done"
|