DocsPage

Environment Variables

Decouple configuration from your codebase. Store API keys, connection strings, and feature flags securely.

Adding Variables

You can add, edit, or delete Environment Variables from the Project Settings tab in your dashboard. These variables are injected securely at build time for GitHub deployments.

# Example Environment Configuration
NEXT_PUBLIC_API_URL=https://api.mybackend.com
STRIPE_PUBLIC_KEY=pk_live_123456789
DISABLE_ANALYTICS=false

Bulk Import

Need to add multiple variables at once? Use the Bulk Add feature. Paste your .env file contents and ArylLabs will parse and import all key-value pairs automatically.

Security

Environment variables are:

  • Encrypted at rest — stored securely in our infrastructure.
  • Never exposed in logs — build logs automatically redact variable values.
  • Scoped per project — variables from one project cannot be accessed by another.
Note: Variables prefixed with NEXT_PUBLIC_ (or equivalent for your framework) will be embedded in your client-side bundle and are visible to end users.

Next: Learn about Platform Limits →