From ca8641727968d4c03689d90fe46d34616d0f26e6 Mon Sep 17 00:00:00 2001 From: Silentoplayz <50341825+Silentoplayz@users.noreply.github.com> Date: Thu, 26 Dec 2024 13:54:20 -0500 Subject: [PATCH] Update scan-missing-env-vars.py added a missing URL for the only other .env file in the backend: - `https://raw.githubusercontent.com/open-webui/open-webui/{git_ref}/backend/open_webui/migrations/env.py` - `migrations/env.py` --- scripts/scan-missing-env-vars.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/scan-missing-env-vars.py b/scripts/scan-missing-env-vars.py index 62d1e0b..af9f88b 100755 --- a/scripts/scan-missing-env-vars.py +++ b/scripts/scan-missing-env-vars.py @@ -61,8 +61,9 @@ def main(): urls = [ f"https://raw.githubusercontent.com/open-webui/open-webui/{git_ref}/backend/open_webui/config.py", f"https://raw.githubusercontent.com/open-webui/open-webui/{git_ref}/backend/open_webui/env.py", + f"https://raw.githubusercontent.com/open-webui/open-webui/{git_ref}/backend/open_webui/migrations/env.py", ] - filenames = ["config.py", "env.py"] + filenames = ["config.py", "env.py", "migrations/env.py"] all_env_vars = set()