summaryrefslogtreecommitdiff
path: root/docs/narr/MyProject
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-09 14:18:32 -0400
committerChris McDonough <chrism@plope.com>2011-08-09 14:18:32 -0400
commitc6d9f191e920536fdb274d15ef956a5e8151bbc2 (patch)
tree549ac4b9a65ccc57acfebb9ccf1dabc6a9dd0afa /docs/narr/MyProject
parent0db92c11a3ae39cd399ef9da6a8d25d48f35881c (diff)
downloadpyramid-c6d9f191e920536fdb274d15ef956a5e8151bbc2.tar.gz
pyramid-c6d9f191e920536fdb274d15ef956a5e8151bbc2.tar.bz2
pyramid-c6d9f191e920536fdb274d15ef956a5e8151bbc2.zip
fix project.rst to deal with scaffold changes
Diffstat (limited to 'docs/narr/MyProject')
-rw-r--r--docs/narr/MyProject/development.ini3
-rw-r--r--docs/narr/MyProject/production.ini1
-rw-r--r--docs/narr/MyProject/setup.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/docs/narr/MyProject/development.ini b/docs/narr/MyProject/development.ini
index d0db3047c..1818e387b 100644
--- a/docs/narr/MyProject/development.ini
+++ b/docs/narr/MyProject/development.ini
@@ -1,15 +1,16 @@
[app:MyProject]
use = egg:MyProject
+
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
+pyramid.include = pyramid_debugtoolbar
[pipeline:main]
pipeline =
- egg:WebError#evalerror
MyProject
[server:main]
diff --git a/docs/narr/MyProject/production.ini b/docs/narr/MyProject/production.ini
index d0ed9628c..7a5674d23 100644
--- a/docs/narr/MyProject/production.ini
+++ b/docs/narr/MyProject/production.ini
@@ -1,5 +1,6 @@
[app:MyProject]
use = egg:MyProject
+
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
diff --git a/docs/narr/MyProject/setup.py b/docs/narr/MyProject/setup.py
index a64d65ba6..a0b6fab9e 100644
--- a/docs/narr/MyProject/setup.py
+++ b/docs/narr/MyProject/setup.py
@@ -6,7 +6,7 @@ here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
-requires = ['pyramid', 'WebError']
+requires = ['pyramid', 'pyramid_debugtoolbar', 'WebError']
setup(name='MyProject',
version='0.0',