Juicebox Production Checklist
Checklist
- [ ] Production API key in secret manager
- [ ] Rate limiting per plan tier
- [ ] Error handling (401, 403, 429, 500)
- [ ] Candidate data encrypted at rest
- [ ] GDPR/CCPA retention policy
- [ ] Health check tests connectivity
- [ ] Quota usage monitoring
- [ ] Outreach templates compliance-reviewed
Health Check
async function health() {
try {
await client.search({ query: 'test', limit: 1 });
return { status: 'healthy' };
} catch { return { status: 'degraded' }; }
}
Resources
Next Steps
See juicebox-upgrade-migration.