Configure environment variables for your installations
Environment variables let you configure your installations without changing code. They’re perfect for API keys, database
URLs, and other configuration that changes between environments.
You can import multiple environment variables at once using standard .env file format:
1
Click Import
In the Environment Variables section, click the Import button
2
Paste Variables
Paste your environment variables in .env format:
Copy
Ask AI
# Database configurationDATABASE_URL=postgres://user:password@localhost:5432/mydbDATABASE_POOL_SIZE=10# API configurationAPI_KEY=your-secret-keyDEBUG_MODE=false
3
Review and Import
Review the variables and click Import to add them to your installation
The import feature supports standard .env file format:
Each line should contain a single variable in KEY=VALUE format
Comments (lines starting with #) are ignored
Empty lines are ignored
Values can be quoted (both single and double quotes are supported)
Imported variables are added to your existing variables. If a variable with the same name already exists, the imported
value will replace the existing one.
When you update a sensitive value, Ryvn ensures the change is processed reliably and atomically. The new value is securely encrypted and deployed to your installation, while the old value is securely destroyed in the process. This synchronous update process guarantees that your installation always has access to the correct secret values without any risk of race conditions or inconsistencies.