summaryrefslogtreecommitdiff
path: root/utils/get_setting.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2024-01-07 18:33:34 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-01-09 16:31:19 +0100
commitf9c5727ddc74b9ee3bb95225c30f57c7aeb14806 (patch)
tree9cda98183b0efcbca8ba45b53d9502a36a0201a3 /utils/get_setting.py
parent60bc5baea31c24a72cfb4f45322e326cc62caf23 (diff)
[mod] get rid of ./utils/brand.env and its workflow
All the environments defined in ./utils/brand.env are generated on the fly, so there is no longer a need to define the brand environment in this file and all the workflows to handle this file. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/get_setting.py')
-rw-r--r--utils/get_setting.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/utils/get_setting.py b/utils/get_setting.py
index fa8d9cf8f..94c894e3e 100644
--- a/utils/get_setting.py
+++ b/utils/get_setting.py
@@ -12,17 +12,6 @@ from pathlib import Path
repo_root = Path(__file__).resolve().parent.parent
-# If you add or remove variables here, do not forget to update:
-# - ./docs/admin/engines/settings.rst
-# - ./docs/dev/makefile.rst (section make buildenv)
-
-name_val = [
- ("SEARXNG_URL", "server.base_url"),
- ("SEARXNG_PORT", "server.port"),
- ("SEARXNG_BIND_ADDRESS", "server.bind_address"),
-]
-
-
def main(setting_name):
settings_path = repo_root / "searx" / "settings.yml"