Merge pull request #679 from dalf/brand-searxng

searxng.org: update setup.py & settings.yml
This commit is contained in:
Alexandre Flament 2022-01-05 19:07:53 +01:00 committed by GitHub
commit d3ecadd3f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 32 additions and 32 deletions

View file

@ -10,7 +10,7 @@ from searx.engines import categories as searx_categories
about = {
"website": 'https://github.com/searxng/searxng',
"wikidata_id": 'Q17639196',
"official_api_documentation": 'https://searxng.github.io/searxng/dev/search_api.html',
"official_api_documentation": 'https://docs.searxng.org/dev/search_api.html',
"use_official_api": True,
"require_api_key": False,
"results": 'JSON',

View file

@ -5,7 +5,7 @@ general:
brand:
new_issue_url: https://github.com/searxng/searxng/issues/new
docs_url: https://searxng.github.io/searxng
docs_url: https://docs.searxng.org/
public_instances: https://searx.space
wiki_url: https://github.com/searxng/searxng/wiki
issue_url: https://github.com/searxng/searxng/issues
@ -151,7 +151,7 @@ outgoing:
# - fe80::/126
# External plugin configuration, for more details see
# https://searxng.github.io/searxng/dev/plugins.html
# https://docs.searxng.org/dev/plugins.html
#
# plugins:
# - plugin1
@ -618,7 +618,7 @@ engines:
- name: google
engine: google
shortcut: go
# see https://searxng.github.io/searxng/src/searx.engines.google.html#module-searx.engines.google
# see https://docs.searxng.org/src/searx.engines.google.html#module-searx.engines.google
use_mobile_ui: false
# additional_tests:
# android: *test_android

View file

@ -146,7 +146,7 @@ SCHEMA = {
'brand': {
'issue_url': SettingsValue(str, 'https://github.com/searxng/searxng/issues'),
'new_issue_url': SettingsValue(str, 'https://github.com/searxng/searxng/issues/new'),
'docs_url': SettingsValue(str, 'https://searxng.github.io/searxng'),
'docs_url': SettingsValue(str, 'https://docs.searxng.org'),
'public_instances': SettingsValue(str, 'https://searx.space'),
'wiki_url': SettingsValue(str, 'https://github.com/searxng/searxng/wiki'),
},