]> asedeno.scripts.mit.edu Git - bluechips.git/blob - test.ini
We have pie charts.
[bluechips.git] / test.ini
1 #
2 # BlueChips - Pylons testing environment configuration
3 #
4 # The %(here)s variable will be replaced with the parent directory of this file
5 #
6 [DEFAULT]
7 debug = false
8 # Uncomment and replace with the address which should receive any error reports
9 #email_to = you@yourdomain.com
10 smtp_server = localhost
11 error_email_from = paste@localhost
12
13 [server:main]
14 use = egg:Paste#http
15 host = 0.0.0.0
16 port = 5000
17
18 [app:main]
19 use = egg:BlueChips
20 full_stack = true
21 cache_dir = %(here)s/data
22 beaker.session.key = bluechips
23 beaker.session.secret = somesecret
24
25 fake_username = root
26 testing = true
27
28 sqlalchemy.url = sqlite://
29
30 [loggers]
31 keys = root
32
33 [handlers]
34 keys = console
35
36 [formatters]
37 keys = generic
38
39 [logger_root]
40 level = CRITICAL
41 handlers = console
42
43 [handler_console]
44 class = StreamHandler
45 args = (sys.stderr,)
46 level = NOTSET
47 formatter = generic
48
49 [formatter_generic]
50 format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s