summaryrefslogtreecommitdiff
path: root/docs/narr/startup.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-27 03:00:09 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-27 03:00:09 -0800
commitfb77c9006eda49c144203a1474fcbeed2fea55cb (patch)
tree5c1f00658b2ba289d3e2348571c5b4492a1cfdf1 /docs/narr/startup.rst
parentaf098b66c60b2451d6e9e932d5b4bddfaa63f323 (diff)
downloadpyramid-fb77c9006eda49c144203a1474fcbeed2fea55cb.tar.gz
pyramid-fb77c9006eda49c144203a1474fcbeed2fea55cb.tar.bz2
pyramid-fb77c9006eda49c144203a1474fcbeed2fea55cb.zip
quick_tutorial - refactor MyProject/myproject for cookiecutters
Diffstat (limited to 'docs/narr/startup.rst')
-rw-r--r--docs/narr/startup.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index 1c2b7c492..cf4612602 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -70,7 +70,7 @@ Here's a high-level time-ordered overview of what happens when you press
:app:`Pyramid` :term:`router` instance. Here's the contents of an example
``__init__.py`` module:
- .. literalinclude:: MyProject/myproject/__init__.py
+ .. literalinclude:: myproject/myproject/__init__.py
:language: python
:linenos:
@@ -86,12 +86,12 @@ Here's a high-level time-ordered overview of what happens when you press
Our generated ``development.ini`` file looks like so:
- .. literalinclude:: MyProject/development.ini
+ .. literalinclude:: myproject/development.ini
:language: ini
:linenos:
In this case, the ``myproject.__init__:main`` function referred to by the
- entry point URI ``egg:MyProject`` (see :ref:`MyProject_ini` for more
+ entry point URI ``egg:myproject`` (see :ref:`myproject_ini` for more
information about entry point URIs, and how they relate to callables) will
receive the key/value pairs ``{pyramid.reload_templates = true,
pyramid.debug_authorization = false, pyramid.debug_notfound = false,