Production Checklist
Review this checklist before going live with your CubeStack-powered application.Security
API keys are stored securely
Keys are in environment variables, not in code or config files committed to git.
Performance
- Pagination is implemented (don’t fetch all records at once)
- Responses are cached where appropriate
- Images use the correct variant (thumbnail for lists, full for detail views)
Error Handling
- API errors are caught and displayed to users gracefully
- Retry logic is implemented for transient errors
- Rate limit handling is in place
Data
- Cube schemas are finalized
- Required fields are set correctly
- Validation rules are configured
- Test data is cleaned up
Monitoring
- API errors are logged
- Webhook failures are monitored
- Usage is within plan limits