-
Notifications
You must be signed in to change notification settings - Fork 138
/
test_psql.ini
95 lines (76 loc) · 2.4 KB
/
test_psql.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
<<<<<<< HEAD
[app:bookie]
=======
[app::call <SNR>22_LustyJugglerKeyPressed('b')
oo:call <SNR>22_LustyJugglerKeyPressed('8')
:call <SNR>22_LustyJugglerKeyPressed('7')
:call <SNR>22_LustyJugglerKeyPressed('7')
u:call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
::call <SNR>22_LustyJugglerCancel()
:call <SNR>22_LustyJugglerCancel()
]
>>>>>>> 4b5c1669db1906cb3288bb00c5c27cd4599011d0
use = egg:bookie
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
pyramid.includes = pyramid_tm
mako.directories = bookie:templates
sqlalchemy.url = postgresql://jenkins_bookie:[email protected]:5432/jenkins_bookie
auth.secret=supersecretthing_changeme
email.enable=false
email.host=sendmail
fulltext.engine=whoosh
fulltext.index=bookie_pgsql
combo_server=127.0.0.1:8000
# set this to help bust the cache. It will add a prefix to the combo url you
# can url-rewrite out on the server side. Left empty for development use.
combo_cache_id=
# file to include on each page that includes things such as google analytics code
installspecific =
# Where are we going to upload import files while we wait to process them
# we leave this commented out in tests, just let it use the default tmp dir
#import_files=%(here)s/data/imports
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, bookie, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = DEBUG
handlers = console
[logger_bookie]
level = DEBUG
handlers =
qualname = bookie
[logger_sqlalchemy]
level = DEBUG
handlers = console
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 = DEBUG
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration