Environment Variables

The Env Vars panel provides a dedicated interface for managing environment variables. It filters secrets by the Environment category and presents them in a key-value format.

Quick Add

1
  • Click + Add Variable
  • 2
  • Enter the variable name (e.g., DATABASE_URL)
  • 3
  • Enter the value
  • 4
  • Press Enter or click Save
  • Import from .env

    Click Import and paste your .env file contents. The parser handles standard dotenv syntax including comments and quoted values.

    Supported .env format
    bash
    # Database
    DATABASE_URL="postgresql://user:pass@localhost:5432/mydb"
    REDIS_URL=redis://localhost:6379
    # API Keys
    STRIPE_SECRET_KEY=sk_live_abc123
    OPENAI_API_KEY="sk-proj-..."

    Export Formats

    FormatDescription
    .envStandard dotenv for local development
    JSONKey-value JSON object
    YAMLYAML mapping for Docker/Kubernetes
    Shellexport KEY=VALUE for shell scripts
    !Warning
    Exported files contain decrypted secret values. Handle with the same care as any credentials file.
    PreviousCreating a VaultNextAPI Tokens