mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
[enh] settings.py added
This commit is contained in:
parent
bbdd255407
commit
1b3712c189
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
||||
env
|
||||
searx.conf
|
||||
settings.py
|
||||
|
12
searx/settings.py
Normal file
12
searx/settings.py
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
port = 8888
|
||||
|
||||
secret_key = "ultrasecretkey" # change this!
|
||||
|
||||
debug = False
|
||||
|
||||
weights = {} # 'search_engine_name': float(weight) | default is 1.0
|
||||
|
||||
blacklist = [] # search engine blacklist
|
||||
|
||||
categories = {} # custom search engine categories
|
@ -26,6 +26,7 @@ from flask import Flask, request, flash, render_template, url_for, Response, mak
|
||||
import ConfigParser
|
||||
from os import getenv
|
||||
from searx.engines import search, categories
|
||||
from searx import settings
|
||||
import json
|
||||
|
||||
cfg = ConfigParser.SafeConfigParser()
|
||||
@ -36,7 +37,7 @@ cfg.read('searx.conf')
|
||||
|
||||
|
||||
app = Flask(__name__)
|
||||
app.secret_key = cfg.get('app', 'secret_key')
|
||||
app.secret_key = settings.secret_key
|
||||
|
||||
opensearch_xml = '''<?xml version="1.0" encoding="utf-8"?>
|
||||
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
||||
@ -113,7 +114,7 @@ if __name__ == "__main__":
|
||||
from gevent import monkey
|
||||
monkey.patch_all()
|
||||
|
||||
app.run(debug = cfg.get('server', 'debug')
|
||||
,use_debugger = cfg.get('server', 'debug')
|
||||
,port = int(cfg.get('server', 'port'))
|
||||
app.run(debug = settings.debug
|
||||
,use_debugger = settings.debug
|
||||
,port = settings.port
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user