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`
This commit is contained in:
Silentoplayz 2024-12-26 13:54:20 -05:00
parent c3874dc308
commit ca86417279

View File

@ -61,8 +61,9 @@ def main():
urls = [ 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/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/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() all_env_vars = set()