Co-authored-by: openhands <openhands@all-hands.dev> Reviewed-on: https://codeberg.org/johba/harb/pulls/84
32 lines
935 B
Bash
32 lines
935 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Change to the ponder directory (Woodpecker runs from /woodpecker/src/)
|
|
cd /app/services/ponder
|
|
|
|
echo "[ponder-ci] Starting Ponder indexer..."
|
|
|
|
# Required environment variables (set by Woodpecker from bootstrap step)
|
|
: "${DATABASE_URL:?DATABASE_URL is required}"
|
|
: "${PONDER_RPC_URL_1:?PONDER_RPC_URL_1 is required}"
|
|
|
|
# Optional with defaults
|
|
export PONDER_RPC_TIMEOUT=${PONDER_RPC_TIMEOUT:-20000}
|
|
export HOST=${HOST:-0.0.0.0}
|
|
export PORT=${PORT:-42069}
|
|
|
|
# Create .env.local from environment
|
|
cat > .env.local <<EOF
|
|
DATABASE_URL=${DATABASE_URL}
|
|
PONDER_RPC_URL_1=${PONDER_RPC_URL_1}
|
|
DATABASE_SCHEMA=${DATABASE_SCHEMA:-ponder_ci}
|
|
START_BLOCK=${START_BLOCK:-0}
|
|
EOF
|
|
|
|
echo "[ponder-ci] Environment configured:"
|
|
echo " DATABASE_URL: ${DATABASE_URL}"
|
|
echo " PONDER_RPC_URL_1: ${PONDER_RPC_URL_1}"
|
|
echo " START_BLOCK: ${START_BLOCK:-0}"
|
|
|
|
# Run ponder in dev mode (indexes and serves GraphQL)
|
|
exec npm run dev
|