Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/docs/Develop/environment-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,9 @@ To make environment variables available to GUI apps on macOS, you need to use `l
<string>/bin/sh</string>
<string>-c</string>
<string>
launchctl setenv LANGFLOW_CONFIG_DIR /Users/your_user/custom/config &&
launchctl setenv LANGFLOW_PORT 7860 &&
launchctl setenv LANGFLOW_HOST localhost &&
launchctl setenv LANGFLOW_CONFIG_DIR /Users/your_user/custom/config ;
launchctl setenv LANGFLOW_PORT 7860 ;
launchctl setenv LANGFLOW_HOST localhost ;
launchctl setenv ARIZE_API_KEY ak-...
</string>
</array>
Expand All @@ -366,7 +366,7 @@ To make environment variables available to GUI apps on macOS, you need to use `l
4. Load the file with `launchctl`:

```bash
launchctl load ~/Library/LaunchAgents/dev.langflow.env.plist
launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/dev.langflow.env.plist
```

</TabItem>
Expand Down
Loading