ソースを参照

chore: example.env updated

Timothy J. Baek 1 年間 前
コミット
78bf9bad94
2 ファイル変更10 行追加8 行削除
  1. 2 3
      backend/config.py
  2. 8 5
      example.env

+ 2 - 3
backend/config.py

@@ -6,8 +6,7 @@ from secrets import token_bytes
 from base64 import b64encode
 from base64 import b64encode
 import os
 import os
 
 
-
-load_dotenv(find_dotenv())
+load_dotenv(find_dotenv("../.env"))
 
 
 ####################################
 ####################################
 # ENV (dev,test,prod)
 # ENV (dev,test,prod)
@@ -38,7 +37,7 @@ WEBUI_VERSION = os.environ.get("WEBUI_VERSION", "v1.0.0-alpha.21")
 ####################################
 ####################################
 
 
 
 
-WEBUI_AUTH = True if os.environ.get("WEBUI_AUTH", "TRUE") == "TRUE" else False
+WEBUI_AUTH = True if os.environ.get("WEBUI_AUTH", "FALSE") == "TRUE" else False
 
 
 
 
 ####################################
 ####################################

+ 8 - 5
example.env

@@ -1,9 +1,12 @@
-# If serving with the backend (Recommended)
+# If you're serving both the frontend and backend (Recommended)
+# Set the public API base URL for seamless communication
 PUBLIC_API_BASE_URL='/ollama/api'
 PUBLIC_API_BASE_URL='/ollama/api'
 
 
-# Comment above and Uncomment below if you're serving only the frontend (Not supported)
-# must be defined, but defaults to 'http://{location.hostname}:11434/api'
-# can also use path, such as '/api'
-# PUBLIC_API_BASE_URL=''
+# If you're serving only the frontend (Not recommended and not fully supported)
+# Comment above and Uncomment below
+# You can use the default value or specify a custom path, e.g., '/api'
+# PUBLIC_API_BASE_URL='http://{location.hostname}:11434/api'
 
 
+# Ollama URL for the backend to connect
+# The path '/ollama/api' will be redirected to the specified backend URL
 OLLAMA_API_BASE_URL='http://localhost:11434/api'
 OLLAMA_API_BASE_URL='http://localhost:11434/api'