Mercurial > hg > toolbox
comparison test/test.ini @ 0:b0942f44413f
import from git://github.com/mozilla/toolbox.git
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 11 May 2014 09:15:35 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b0942f44413f |
---|---|
1 #!/usr/bin/env paster | |
2 | |
3 # config for the testing webserver | |
4 | |
5 [DEFAULT] | |
6 debug = true | |
7 email_to = jhammel@example.com | |
8 smtp_server = localhost | |
9 error_email_from = paste@localhost | |
10 | |
11 [exe] | |
12 command = serve | |
13 | |
14 [server:main] | |
15 use = egg:Paste#http | |
16 host = 0.0.0.0 | |
17 port = 9090 | |
18 | |
19 [composite:main] | |
20 use = egg:Paste#urlmap | |
21 / = toolbox | |
22 | |
23 set debug = false | |
24 | |
25 [app:toolbox] | |
26 paste.app_factory = toolbox.factory:paste_factory | |
27 toolbox.directory = %(here)s/test_json | |
28 toolbox.fields = usage author type language dependencies |