-
Notifications
You must be signed in to change notification settings - Fork 138
/
test.ini
99 lines (76 loc) · 2.26 KB
/
test.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:bookie]
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 = sqlite:///test_bookie.db
# sqlalchemy.echo = true
auth.secret=supersecretthing_changeme
email.enable=false
email.host=sendmail
fulltext.engine=whoosh
fulltext.index=bookie_test
# twitter application details
twitter_consumer_key = Guesswhat
twitter_consumer_secret = BookieRocks
# what is the host that's providing the YUI combo loader?
combo_server = http://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 = /home/rharding/src/bookie/bookie/installspecific.txt
# 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
celery_broker=redis://localhost:6379/9
celery_concurrency=1
# Where are we going to upload import files while we wait to process them
import_files={here}/data/imports
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, bookie, celery, breadability
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_bookie]
level = WARN
handlers =
qualname = bookie
[logger_breadability]
level = WARN
handlers =
qualname = breadability
[logger_celery]
level = WARN
handlers =
qualname = bookie.bcelery.tasks
[logger_sqlalchemy]
level = WARN
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 = INFO
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration