Skip to content

Commit

Permalink
Fixed minor typo in bash command to prevent overwriting .env file (Be…
Browse files Browse the repository at this point in the history
…rriAI#5902)

Changed '>' to '>>' in the bash command to append the environment variable to the .env file instead of overwriting it.
  • Loading branch information
sdaoudi authored Sep 29, 2024
1 parent ec6ec32 commit bfa9553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/my-website/docs/proxy/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ echo 'LITELLM_MASTER_KEY="sk-1234"' > .env
# It is used to encrypt / decrypt your LLM API Key credentials
# We recommned - https://1password.com/password-generator/
# password generator to get a random hash for litellm salt key
echo 'LITELLM_SALT_KEY="sk-1234"' > .env
echo 'LITELLM_SALT_KEY="sk-1234"' >> .env

source .env

Expand Down Expand Up @@ -971,4 +971,4 @@ export DATABASE_SCHEMA="schema-name" # skip to use the default "public" schema

```bash
litellm --config /path/to/config.yaml --iam_token_db_auth
```
```

0 comments on commit bfa9553

Please sign in to comment.