Production Checklist

Security and integration production deployment requirements.

Ensure your application meets the security, stability, and efficiency standards before launching to production users.

Integration Safeguards

  • Store Bearer credentials in environment variables (`process.env`) strictly server-side.
  • Configure a TLS/SSL HTTPS webhook URL and acknowledge payloads immediately with a 200 OK response.
  • Process heavy operations (e.g. processing image downloads or AI replies) using an asynchronous queue system like BullMQ, Celery, or Sidekiq.
  • Do not expose the raw instance ID slots or credentials to the client application.
Was this page helpful?