Skip to content

Set Environment Variables

Next, you can configure your environment variables.

You can choose to set environment variables manually or via a .env file.

Set Environment Variables

Copy and Paste an .env File

You can quickly set up multiple environment variables by copying and pasting your entire .env file contents into the first key field (where you see "FOO" in the screenshot above). The interface will automatically parse and input the variables as long as they follow the standard .env file format.

Here's an example of a properly formatted .env file:

# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=myapp
DB_USER=admin
DB_PASSWORD=secure_password

# API Keys
API_KEY=sk_123456789
SECRET_KEY=sk_987654321

# Application Settings
APP_ENV=development
DEBUG=true
PORT=3000