# Author: Simon-Pierre Boucher # Mail: contact@spboucher.ai # --- indexer --------------------------------------------------------- # comma-separated subset of chains to index; empty = all configured EXPLORER_CHAINS= # SQLite path (dev). Docker compose overrides this to /data/explorer.db EXPLORER_DB=./explorer.db # grow history backwards N days (0 = off); per-chain backfill_days in # chains.yaml overrides. Backfill runs at lower priority than head tailing. EXPLORER_BACKFILL_DAYS=0 # --- api ------------------------------------------------------------- API_PORT=8080 # --- postgres --------------------------------------------------------- POSTGRES_USER=explorer POSTGRES_PASSWORD=explorer POSTGRES_DB=explorer POSTGRES_PORT=5433 # host port (containers use 5432 internally) # Uncomment to store in postgres instead of SQLite. # Inside docker compose: # DATABASE_URL=postgresql://explorer:explorer@postgres:5432/explorer # From the host (local dev): # DATABASE_URL=postgresql://explorer:explorer@127.0.0.1:5433/explorer