Skip to content

Commit 6daa376

Browse files
authored
docs: add PATH export to the second terminal window step (#84)
The new terminal in step 5 does not inherit the PATH from step 3, so warden commands would still fail without it.
1 parent e457582 commit 6daa376

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

provider/anthropic/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The Anthropic provider enables proxied access to the Anthropic API through Warde
5555
>
5656
> **5. In another terminal window**, export the environment variables for the CLI:
5757
> ```bash
58+
> export PATH="$PWD:$PATH"
5859
> export WARDEN_ADDR="http://127.0.0.1:8400"
5960
> export WARDEN_TOKEN="<your-token>"
6061
> ```

provider/aws/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ The AWS provider enables proxied access to AWS services through Warden. It inter
5959
>
6060
> **5. In another terminal window**, export the environment variables for the CLI:
6161
> ```bash
62+
> export PATH="$PWD:$PATH"
6263
> export WARDEN_ADDR="http://127.0.0.1:8400"
6364
> export WARDEN_TOKEN="<your-token>"
6465
> ```

provider/azure/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The Azure provider enables proxied access to Azure APIs through Warden. It manag
5656
>
5757
> **5. In another terminal window**, export the environment variables for the CLI:
5858
> ```bash
59+
> export PATH="$PWD:$PATH"
5960
> export WARDEN_ADDR="http://127.0.0.1:8400"
6061
> export WARDEN_TOKEN="<your-token>"
6162
> ```

provider/gcp/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The GCP provider enables proxied access to Google Cloud Platform APIs through Wa
5555
>
5656
> **5. In another terminal window**, export the environment variables for the CLI:
5757
> ```bash
58+
> export PATH="$PWD:$PATH"
5859
> export WARDEN_ADDR="http://127.0.0.1:8400"
5960
> export WARDEN_TOKEN="<your-token>"
6061
> ```

provider/github/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ The GitHub provider enables proxied access to the GitHub REST API through Warden
5757
>
5858
> **5. In another terminal window**, export the environment variables for the CLI:
5959
> ```bash
60+
> export PATH="$PWD:$PATH"
6061
> export WARDEN_ADDR="http://127.0.0.1:8400"
6162
> export WARDEN_TOKEN="<your-token>"
6263
> ```

provider/gitlab/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ The GitLab provider enables proxied access to the GitLab REST API through Warden
5959
>
6060
> **5. In another terminal window**, export the environment variables for the CLI:
6161
> ```bash
62+
> export PATH="$PWD:$PATH"
6263
> export WARDEN_ADDR="http://127.0.0.1:8400"
6364
> export WARDEN_TOKEN="<your-token>"
6465
> ```

provider/mistral/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The Mistral provider enables proxied access to the Mistral AI API through Warden
5555
>
5656
> **5. In another terminal window**, export the environment variables for the CLI:
5757
> ```bash
58+
> export PATH="$PWD:$PATH"
5859
> export WARDEN_ADDR="http://127.0.0.1:8400"
5960
> export WARDEN_TOKEN="<your-token>"
6061
> ```

provider/openai/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The OpenAI provider enables proxied access to the OpenAI API through Warden. It
5555
>
5656
> **5. In another terminal window**, export the environment variables for the CLI:
5757
> ```bash
58+
> export PATH="$PWD:$PATH"
5859
> export WARDEN_ADDR="http://127.0.0.1:8400"
5960
> export WARDEN_TOKEN="<your-token>"
6061
> ```

provider/vault/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ The Vault provider enables proxied access to HashiCorp Vault (or OpenBao) throug
6060
>
6161
> **5. In another terminal window**, export the environment variables for the CLI:
6262
> ```bash
63+
> export PATH="$PWD:$PATH"
6364
> export WARDEN_ADDR="http://127.0.0.1:8400"
6465
> export WARDEN_TOKEN="<your-token>"
6566
> ```

0 commit comments

Comments
 (0)