diff options
| author | Matej Cotman <cotman.matej@gmail.com> | 2014-01-12 12:40:27 +0100 |
|---|---|---|
| committer | Matej Cotman <cotman.matej@gmail.com> | 2014-01-14 23:31:15 +0100 |
| commit | e740c8a8ea7dc4bbda7dab9a63ec476167c209ef (patch) | |
| tree | 19fc35d68eb6570b4d4c8b04cf1f82a7d304dddc /searx/settings_robot.py | |
| parent | 348187cff9bc3c55c1327f3d7177e6d1a61b8430 (diff) | |
tests and robot tests framework, build overhaul
Diffstat (limited to 'searx/settings_robot.py')
| -rw-r--r-- | searx/settings_robot.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/searx/settings_robot.py b/searx/settings_robot.py new file mode 100644 index 000000000..004add2a1 --- /dev/null +++ b/searx/settings_robot.py @@ -0,0 +1,16 @@ + +port = 11111 + +secret_key = "ultrasecretkey" # change this! + +debug = False + +request_timeout = 5.0 # seconds + +weights = {} # 'search_engine_name': float(weight) | default is 1.0 + +blacklist = [] # search engine blacklist + +categories = {} # custom search engine categories + +base_url = None # "https://your.domain.tld/" or None (to use request parameters) |