Mercurial > hg > discussions
annotate discusssions.ini @ 0:c904249afb04
initial commit of discussions
author | k0s <k0scist@gmail.com> |
---|---|
date | Sat, 02 Jan 2010 13:36:23 -0500 |
parents | |
children |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env paster |
2 | |
3 [DEFAULT] | |
4 debug = true | |
5 email_to = | |
6 smtp_server = localhost | |
7 error_email_from = paste@localhost | |
8 | |
9 [server:main] | |
10 use = egg:Paste#http | |
11 host = 0.0.0.0 | |
12 port = 1800 | |
13 | |
14 [composite:main] | |
15 use = egg:Paste#urlmap | |
16 / = discusssions | |
17 | |
18 set debug = false | |
19 | |
20 [app:discusssions] | |
21 paste.app_factory = discusssions.factory:factory | |
22 discusssions.name = discussions |