diff simplewiki.ini @ 0:d5102c881cb5

initial commit
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 07 Sep 2010 17:50:04 -0700
parents
children 4c83f7715993
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/simplewiki.ini	Tue Sep 07 17:50:04 2010 -0700
@@ -0,0 +1,22 @@
+#!/usr/bin/env paster
+
+[DEFAULT]
+debug = true
+email_to = jhammel@mozilla.com
+smtp_server = localhost
+error_email_from = paste@localhost
+
+[server:main]
+use = egg:Paste#http
+host = 0.0.0.0
+port = 12345
+
+[composite:main]
+use = egg:Paste#urlmap
+/ = SimpleWiki
+
+set debug = false
+
+[app:SimpleWiki]
+paste.app_factory = simplewiki.factory:factory
+SimpleWiki.name = world
\ No newline at end of file