Defense tech optimized CRM
WAYPOINT is a custom CRM designed by Enigma Aerospace. It fuzes data from government org structure, contacts, solicitations, and budget into rapid, actionable insights.

# Two paths to install. Both end at the same working app.
#
# 1. Claude-driven (~30 min, recommended)
# With Claude + the Supabase and Netlify MCPs connected, Claude can
# drive almost the entire install for you. See docs/CLAUDE_SETUP.md.
#
# 2. Manual (~3 hours)
# Step through it yourself. Requires psql on your machine.
#
# Manual quick start:
git clone https://github.com/reesemozer/waypoint-public.git
cd waypoint-public
# Apply schema (substitute your Supabase DB_URL)
psql "$DB_URL" -f supabase/migrations/000_initial_schema.sql
psql "$DB_URL" -f supabase/migrations/001_rls.sql
psql "$DB_URL" -f supabase/migrations/002_is_email_allowed.sql
psql "$DB_URL" -f supabase/migrations/003_auth_trigger.sql
# Apply budget seed (~5–10 min 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=prod
# SUPABASE_URL, SUPABASE_ANON_KEY, SUPABASE_SERVICE_ROLE_KEY
#
# Then add yourself to auth_allowlist, sign in via magic link, done.Full setup walkthrough on GitHub ↗