forked from BerriAI/litellm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(proxy_server.py): add support for setting master key via .env
- Loading branch information
1 parent
ef8f1ac
commit 14e5018
Showing
4 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
############ | ||
# Secrets | ||
# YOU MUST CHANGE THESE BEFORE GOING INTO PRODUCTION | ||
############ | ||
|
||
LITELLM_MASTER_KEY="sk-1234" | ||
|
||
############ | ||
# Database - You can change these to any PostgreSQL database that has logical replication enabled. | ||
############ | ||
|
||
# LITELLM_DATABASE_URL="your-postgres-db-url" | ||
|
||
|
||
############ | ||
# User Auth - SMTP server details for email-based auth for users to create keys | ||
############ | ||
|
||
# SMTP_HOST = "fake-mail-host" | ||
# SMTP_USERNAME = "fake-mail-user" | ||
# SMTP_PASSWORD="fake-mail-password" | ||
# SMTP_SENDER_EMAIL="fake-sender-email" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# LiteLLM Docker | ||
|
||
This is a minimal Docker Compose setup for self-hosting LiteLLM. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters