From 47b7b637910ad82cc05eb31736f77ffcba5f8fde Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Fri, 15 Dec 2023 15:59:51 -0800 Subject: [PATCH] chore: remove deprecated code --- Dockerfile | 1 - backend/config.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e8361fd..9521c600 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,6 @@ ARG OLLAMA_API_BASE_URL='/ollama/api' ENV ENV=prod ENV OLLAMA_API_BASE_URL $OLLAMA_API_BASE_URL ENV WEBUI_AUTH "" -ENV WEBUI_DB_URL "" ENV WEBUI_JWT_SECRET_KEY "SECRET_KEY" WORKDIR /app diff --git a/backend/config.py b/backend/config.py index 870d204a..1dabe48a 100644 --- a/backend/config.py +++ b/backend/config.py @@ -41,7 +41,7 @@ WEBUI_AUTH = True if os.environ.get("WEBUI_AUTH", "FALSE") == "TRUE" else False #################################### -# WEBUI_DB +# WEBUI_DB (Deprecated, Should be removed) ####################################