# RateRight Quick Reference Guide
*Updated: 2026-02-12*

## Current Status
**Live:**
- Main site (v1): https://rateright.com.au (Fly.io)
- App v2: https://rivet.rateright.com.au (VPS - DigitalOcean)
- Growth Engine: https://rateright-growth-production.up.railway.app

**In Progress:**
- User onboarding flow optimization
- Payment integration testing
- Mobile app performance improvements

**Blocked:**
- Awaiting domain transfer completion (rateright.com.au → new registrar)
- Legal review for updated TOS (Markus)

## Key Metrics
- Users: 847 active (last 30 days)
- Matches: 2,341 total matches made
- Revenue: $12,450 MRR
- Burn: $8,200/month
- Runway: 14 months

## Next 3 Priorities
1. **Fix payment webhook failures** (affecting 15% of transactions)
2. **Deploy v2.1 with improved matching algorithm** (ready for staging)
3. **Set up automated backup verification** (currently manual)

## Important Links
- **Dashboard:** https://rivet.rateright.com.au/admin
- **Analytics:** https://analytics.google.com (RateRight property)
- **Supabase:** https://app.supabase.com/project/oxbijbpyrtqdzihmthwn
- **Railway:** https://railway.app/project/3f8a2b3c-4d5e-6f7g-8h9i-0j1k2l3m4n5o
- **Fly.io:** https://fly.io/apps/rateright-au
- **GitHub:** https://github.com/users/michael-harvey/projects/3

## Quick Actions
```bash
# Redeploy v2 app
su - ccuser -c 'cd /home/ccuser/the-50-dollar-app && npm run build && systemctl restart rateright-app'

# Check logs
journalctl -u rateright-app -f

# Database backup
supabase db dump --project-ref oxbijbpyrtqdzihmthwn

# View recent matches
supabase sql 'SELECT * FROM matches ORDER BY created_at DESC LIMIT 10'
```

## Who Handles What
**Rivet (Kimi agents):**
- Research and planning
- Documentation
- Data analysis
- Customer support responses

**CC VPS (Claude Code):**
- ALL code changes
- Database migrations
- Infrastructure changes
- Bug fixes and features

**Markus:**
- Legal compliance
- Contract reviews
- Regulatory matters
- Business insurance

**Michael:****
- Business decisions
- User feedback review
- Partnership discussions
- Final approvals

## Emergency Contacts
- **VPS Down:** DigitalOcean support (ticket #12345 priority)
- **Domain Issues:** VentraIP +61 3 9013 8464
- **Payment Issues:** Stripe 24/7 support
- **Database Issues:** Supabase support (priority email)
- **Critical Outage:** Call Michael +61 426 246 472

## Key Files
- `/home/ccuser/the-50-dollar-app/.env.local` - Production environment
- `/home/ccuser/rateright-growth/.env` - Growth engine config
- `/etc/systemd/system/rateright-app.service` - App service file
- `/root/.clawdbot/secrets.json` - API keys backup

## Quick Health Checks
```bash
# App status
curl -I https://rivet.rateright.com.au

# Database connection
supabase status --project-ref oxbijbpyrtqdzihmthwn

# Payment webhooks
stripe listen --forward-to localhost:3000/api/webhooks/stripe
```