Skip to main content

scripts/seed-dev-data.sh

Metadata

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

#!/usr/bin/env bash
set -euo pipefail

if [[ -z "${DATABASE_URL:-}" ]]; then
echo "DATABASE_URL is required"
exit 1
fi

psql "${DATABASE_URL}" -v ON_ERROR_STOP=1 -f infra/sql/seed_dev.sql

echo "Seed data loaded"