Skip to content

Commit

Permalink
Update scan-missing-env-vars.py
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
silentoplayz committed Dec 26, 2024
1 parent c3874dc commit ca86417
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/scan-missing-env-vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit ca86417

Please sign in to comment.