Files
br-acc/scripts/bootstrap_all_public.sh
2026-03-01 21:17:32 -03:00

10 lines
339 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
echo "bootstrap-all runs full historical ingestion and may take many hours with high disk/network usage."
exec python3 "${REPO_ROOT}/scripts/run_bootstrap_all.py" --repo-root "${REPO_ROOT}" "$@"