-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevelopment.ini
99 lines (80 loc) · 1.87 KB
/
development.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
###
# app configuration
# http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/environment.html
###
[app:main]
use = egg:springboard
# A repo URL can be a local path, either relative to repos_dir, or absolute.
# Alternatively, a URL can point to a unicore.distribute repo endpoint.
# The index on Elasticsearch corresponds to the basename (minus .git or .json suffix).
# For that reason, the basename must be alphanumeric and lowercase. It may also not
# start with _.
# https://github.com/elastic/elasticsearch/issues/6736
unicore.content_repo_urls =
gem-tz
mama-tz
; thumbor.security_key = ''
unicorehub.host = http://localhost:8080
unicorehub.app_id = fa84e670f9e9460fbf612c150dd06b45
unicorehub.app_password = opW5Ba3KxMLcRmksOdje
unicorehub.redirect_to_https =
featured_languages =
eng_GB
swa_KE
spa_ES
available_languages =
eng_GB
swa_KE
spa_ES
hin_IN
mar_IN
tel_IN
tam_IN
ben_BD
asm_IN
[celery]
CELERY_TASK_SERIALIZER = json
CELERY_ALWAYS_EAGER = True
###
# wsgi server configuration
###
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
###
# logging configuration
# http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/logging.html
###
[loggers]
keys = root, springboard, elasticsearch, elasticsearch.trace, urllib3
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_springboard]
level = DEBUG
handlers = console
qualname = springboard
[logger_elasticsearch]
level = INFO
handlers = console
qualname = elasticsearch
[logger_elasticsearch.trace]
level = WARN
handlers = console
qualname = elasticsearch.trace
[logger_urllib3]
level = INFO
handlers = console
qualname = urllib3
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s