summaryrefslogtreecommitdiffstats
path: root/test.ini
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-06-27 21:43:09 -0400
committerLuke Macken <lmacken@redhat.com>2008-06-27 21:43:09 -0400
commitef6aa096bbb8f52c2bad76f3b086167db326da89 (patch)
tree022e2363dbfb8879948d89cfcc7ae1f2f53b64a0 /test.ini
downloadmanas-ef6aa096bbb8f52c2bad76f3b086167db326da89.tar.gz
manas-ef6aa096bbb8f52c2bad76f3b086167db326da89.tar.xz
manas-ef6aa096bbb8f52c2bad76f3b086167db326da89.zip
Initial TG2 quickstart
Diffstat (limited to 'test.ini')
-rw-r--r--test.ini21
1 files changed, 21 insertions, 0 deletions
diff --git a/test.ini b/test.ini
new file mode 100644
index 0000000..df583ef
--- /dev/null
+++ b/test.ini
@@ -0,0 +1,21 @@
+#
+# manas - Pylons testing environment configuration
+#
+# The %(here)s variable will be replaced with the parent directory of this file
+#
+[DEFAULT]
+debug = true
+# Uncomment and replace with the address which should receive any error reports
+# email_to = you@yourdomain.com
+smtp_server = localhost
+error_email_from = paste@localhost
+
+[server:main]
+use = egg:Paste#http
+host = 0.0.0.0
+port = 5000
+
+[app:main]
+use = config:development.ini
+
+# Add additional test specific configuration options as necessary.