> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk CSV Upload

Instead of adding environment variables one at a time, you can upload multiple variables at once from a CSV file. The same flow is supported on all four scopes — Workspace, Bolt Schedules, Code IDE, and DinoAI Background Agent.

#### Steps

1. From any page in the Paradime application, click **Settings**.
2. Navigate to **Workspaces → Environment Variables**.
3. Open the relevant tab: **Workspace**, **Bolt Schedules**, **Code IDE**, or **Agent**.
4. Click **Bulk Upload**.
5. Drag and drop your CSV file or click to select it.
6. Review and confirm the upload.

<Frame>
  <img src="https://mintcdn.com/paradime-docs/VA9BDQ6XklSoCs4-/images/image-96.png?fit=max&auto=format&n=VA9BDQ6XklSoCs4-&q=85&s=d241db8142b5a0e5029343b290f8aaf7" alt="" width="1520" height="858" data-path="images/image-96.png" />
</Frame>

#### Preparing your CSV file

The CSV file must have a header row with the columns **Key** and **Value**. The header row should avoid containing any punctuation (apart from the commas separating each column) or the importer may not work correctly.

<Warning>
  The **Key** and **Value** columns should NOT contain spaces.
</Warning>

**Example CSV format:**

| Key                        | Value                 |
| -------------------------- | --------------------- |
| GOOGLE\_SHEETS\_CLIENT\_ID | app.googlecontent.com |
| JIRA\_CLIENT\_ID           | e1Z5mthO8zAQqM9z8     |
| DEV\_SCHEMA\_PREFIX        | dev\_                 |

#### Validation

Each row is validated against the same rules as a single Add:

* **Key** must match `^[a-zA-Z_][a-zA-Z0-9_]*$` (letters, digits and underscores; cannot start with a digit).
* **Value** cannot contain whitespace.

Rows that fail validation are reported back in the review step before anything is written.


## Related topics

- [Bolt Schedules Environment Variables](/products/settings/environment-variables/bolt-schedule-env-variables.md)
- [Code IDE Environment Variables](/products/settings/environment-variables/code-ide-env-variables.md)
- [DinoAI Background Agent Environment Variables](/products/settings/environment-variables/dinoai-background-agent-environment-variables.md)
- [Rainbow CSV](/integrations/rainbow-csv.md)
- [Working with CSV Files](/guides/paradime-101/getting-started-with-the-paradime-ide/utilizing-advanced-developer-features/working-with-csv-files.md)
