- Backend REST/gateway/track routes, analytics, Blockscout proxy paths. - Frontend wallet and liquidity surfaces; MetaMask token list alignment. - Deployment docs, verification scripts, address inventory updates. Check: go build ./... under backend/ (pass). Made-with: Cursor
870 B
870 B
Production Checklist
Before running the Explorer API and indexer in production:
-
Set a strong
JWT_SECRET
Do not use the placeholder from the env template. Generate a secure value, e.g.:export JWT_SECRET=$(openssl rand -hex 32)See
deployment/ENVIRONMENT_TEMPLATE.envfor all required variables. -
Run database migrations
Apply migrations before starting the API and indexer:export DB_PASSWORD='<your DB password>' bash scripts/run-migration-0010.shscripts/run-migration-0010.shauto-detects standalone explorer DB vs shared Blockscout DB. Do not applybackend/database/migrations/0010_track_schema.up.sqldirectly to a shared Blockscout database. -
Configure DB and RPC
EnsureDB_*,RPC_URL,WS_URL, andCHAIN_IDare set correctly for the target environment.