> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cubestack.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Production Checklist

> Checklist for deploying your CubeStack integration to production.

# Production Checklist

Review this checklist before going live with your CubeStack-powered application.

## Security

<Steps>
  <Step title="API keys are stored securely">
    Keys are in environment variables, not in code or config files committed to git.
  </Step>

  <Step title="Public columns are reviewed">
    Only columns that should be publicly visible are marked as public.
  </Step>

  <Step title="No API keys in client-side code">
    Browser-facing code uses public access only.
  </Step>
</Steps>

## 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
