-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.ini
More file actions
76 lines (63 loc) · 1.64 KB
/
development.ini
File metadata and controls
76 lines (63 loc) · 1.64 KB
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
[app:lifescore]
use = egg:lifescore
reload_templates = true
debug_authorization = false
debug_notfound = false
debug_routematch = false
debug_templates = true
default_locale_name = en
sqlalchemy.url = mysql+mysqldb://lifescore:5mad_cows@localhost/lifescore?charset=utf8&use_unicode=0
mako.directories = lifescore:templates
facebook.app.id = 199490613426825
facebook.app.secret = 69c39bfdddbfe8074dda4530625e22d1
cache.data_dir = /tmp/cache/data
cache.lock_dir = /tmp/cache/lock
cache.regions = short_term, long_term
cache.type = ext:memcached
cache.url = 127.0.0.1:11211
cache.user.short_term = 3600
cache.data.long_term = 86400
session.type = memory
session.key = ChangeMePlease
session.secret = H"X~_;lv0:%1{TUc6|&>0WEOIfy;Hjqb)8hI8w$[YWjz(M^bMX[G.?Jp{/tU^Sc
[pipeline:main]
pipeline =
egg:WebError#evalerror
tm
lifescore
[filter:tm]
use = egg:repoze.tm2#tm
commit_veto = repoze.tm:default_commit_veto
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, lifescore, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_lifescore]
level = DEBUG
handlers =
qualname = lifescore
[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