summaryrefslogtreecommitdiff
path: root/paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl')
-rw-r--r--paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl22
1 files changed, 22 insertions, 0 deletions
diff --git a/paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl b/paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl
new file mode 100644
index 0000000..0c0ae35
--- /dev/null
+++ b/paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl
@@ -0,0 +1,22 @@
+[filter-app:main]
+# This puts the interactive debugger in place:
+use = egg:Paste#evalerror
+next = devel
+
+[app:devel]
+# This application is meant for interactive development
+use = egg:${project}
+debug = true
+# You can add other configuration values:
+greeting = Aloha!
+
+[app:test]
+# While this version of the configuration is for non-iteractive
+# tests (unit tests)
+use = devel
+
+[server:main]
+use = egg:Paste#http
+# Change to 0.0.0.0 to make public:
+host = 127.0.0.1
+port = 8080