From f76d952b593ae55078e5a9d4e245806df9faa499 Mon Sep 17 00:00:00 2001 From: orion Date: Wed, 25 Feb 2026 10:45:06 +0000 Subject: [PATCH] chore(dev): add docker compose up/down helper scripts --- scripts/dev-down.sh | 6 ++++++ scripts/dev-up.sh | 13 +++++++++++++ 2 files changed, 19 insertions(+) create mode 100755 scripts/dev-down.sh create mode 100755 scripts/dev-up.sh diff --git a/scripts/dev-down.sh b/scripts/dev-down.sh new file mode 100755 index 0000000..d5f449f --- /dev/null +++ b/scripts/dev-down.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -euo pipefail +ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)" +cd "$ROOT_DIR" + +docker compose down diff --git a/scripts/dev-up.sh b/scripts/dev-up.sh new file mode 100755 index 0000000..eda0d39 --- /dev/null +++ b/scripts/dev-up.sh @@ -0,0 +1,13 @@ +#!/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"