Back to Documentation

Environment Variables

Securely manage secrets and configuration for your builds.

Adding Environment Variables

Add environment variables in your project settings. These are available during builds and can be used in your app code.

API_URL=https://api.example.com
API_KEY=your-secret-key

Secure Secrets

Mark sensitive variables as secrets. Secret values are encrypted and never displayed in logs or UI.

  • • Secrets are encrypted at rest
  • • Never exposed in build logs
  • • Only accessible during build execution

Environment-Specific Variables

Set different values for development, staging, and production environments. Each environment can have its own set of variables.