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
2
DATABASE_URL)3
4
Import from .env
Click Import and paste your .env file contents. The parser handles standard dotenv syntax including comments and quoted values.
Export Formats
| Format | Description |
|---|---|
| .env | Standard dotenv for local development |
| JSON | Key-value JSON object |
| YAML | YAML mapping for Docker/Kubernetes |
| Shell | export KEY=VALUE for shell scripts |
!Warning
Exported files contain decrypted secret values. Handle with the same care as any credentials file.