Government budget tracking
Ledger is a public, read-only explorer for the U.S. DoD FY2026–FY2027 budget. Browse RDT&E and Procurement programs through a drill-down hierarchy or Sankey flow diagram, with full justification-book narratives behind every program.

# Two paths to install. Both end at the same working app.
#
# 1. Claude-driven (~15 min, recommended)
# With Claude + the Supabase and Netlify MCPs connected, the bundled
# .claude/skills/setup-ledger skill drives the whole install.
#
# 2. Manual — full walkthrough in docs/SETUP.md.
#
# Manual quick start:
git clone https://github.com/reesemozer/ledger-public.git
cd ledger-public
# Apply schema (substitute your Supabase DB_URL)
psql "$DB_URL" -f supabase/migrations/000_ledger_schema.sql
# Load the budget seed (~30 s over the pooler)
for f in supabase/seed/budget/*.sql; do psql "$DB_URL" -f "$f"; done
# Deploy to Netlify with env vars set:
# WAYPOINT_ENV=demo
# SUPABASE_URL, SUPABASE_ANON_KEYFull setup walkthrough on GitHub ↗