-
Notifications
You must be signed in to change notification settings - Fork 1
/
development.ini
86 lines (68 loc) · 1.68 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
[app:kotti]
use = egg:kotti
pyramid.reload_templates = true
pyramid.debug_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = true
pyramid.debug_routematch = false
pyramid.includes =
pyramid_debugtoolbar
pyramid_tm
pyramid.default_locale_name = en
sqlalchemy.url = sqlite:///%(here)s/kotti_es.db
#mail.default_sender = yourname@yourhost
kotti.configurators =
kotti_tinymce.kotti_configure
kotti_es.kotti_configure
kotti.site_title = kotti_es site
kotti.secret = qwerty
elastic.index = mip_project
elastic.servers = localhost:9200
elastic.ensure_index_on_start = 1
kotti.search_content = kotti_es.util.es_search_content
kotti_es.blacklist =
File
Image
# Optional: you can configure a different index_action
# kotti_es.index_action = yourcustom.indeaction
[filter:fanstatic]
use = egg:fanstatic#fanstatic
[pipeline:main]
pipeline =
fanstatic
kotti
[server:main]
use = egg:waitress#main
host = 127.0.0.1
port = 5000
[alembic]
script_location = kotti_es:alembic
# Begin logging configuration
[loggers]
keys = root, kotti_es, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_kotti_es]
level = DEBUG
handlers =
qualname = kotti_es
[logger_sqlalchemy]
level = INFO
handlers =
qualname = sqlalchemy.engine
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARN" logs neither. (Recommended for production systems.)
[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
# End logging configuration