mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 03:34:10 +00:00
Merge pull request #4779 from BerriAI/docs_add_salt_key_docker_compose
Docs - add `LITELLM_SALT_KEY` to docker compose
This commit is contained in:
commit
cf55f58881
2 changed files with 16 additions and 2 deletions
|
@ -191,8 +191,15 @@ git clone https://github.com/BerriAI/litellm
|
|||
# Go to folder
|
||||
cd litellm
|
||||
|
||||
# Add the master key
|
||||
# Add the master key - you can change this after setup
|
||||
echo 'LITELLM_MASTER_KEY="sk-1234"' > .env
|
||||
|
||||
# Add the litellm salt key - you cannot change this after adding a model
|
||||
# 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
|
||||
|
||||
source .env
|
||||
|
||||
# Start
|
||||
|
|
|
@ -17,8 +17,15 @@ git clone https://github.com/BerriAI/litellm
|
|||
# Go to folder
|
||||
cd litellm
|
||||
|
||||
# Add the master key
|
||||
# Add the master key - you can change this after setup
|
||||
echo 'LITELLM_MASTER_KEY="sk-1234"' > .env
|
||||
|
||||
# Add the litellm salt key - you cannot change this after adding a model
|
||||
# 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
|
||||
|
||||
source .env
|
||||
|
||||
# Start
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue