8ab537797a
next will be to add CI on it
21 lines
626 B
Bash
Executable File
21 lines
626 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
COMPOSE_FILE="$(dirname "$0")/docker-compose.test.yml"
|
|
|
|
wait_for_port() {
|
|
local host="$1" port="$2" timeout="${3:-30}"
|
|
local deadline=$(( $(date +%s) + timeout ))
|
|
until nc -z "$host" "$port" 2>/dev/null; do
|
|
[[ $(date +%s) -ge $deadline ]] && echo "Timeout waiting for $host:$port" >&2 && exit 1
|
|
sleep 0.5
|
|
done
|
|
}
|
|
|
|
echo "[setup] Starting test postgres..."
|
|
docker compose -f "$COMPOSE_FILE" down -v 2>/dev/null || true
|
|
docker compose -f "$COMPOSE_FILE" up -d
|
|
echo "[setup] Waiting for postgres on port 5433..."
|
|
wait_for_port 127.0.0.1 5433
|
|
echo "[setup] Postgres is ready."
|