summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/tutorial_approach.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2018-07-02 13:52:55 -0400
committerChris McDonough <chrism@plope.com>2018-07-02 13:52:55 -0400
commit0c8ca237d1bb1ff0f6e3776a3c868edb040fa791 (patch)
tree57498768d48ce74a753dec8f359b5646acf30655 /docs/quick_tutorial/tutorial_approach.rst
parent50efc321cb14d76433216783c11b9eb99a7d44c8 (diff)
parent57a896f103c7378fb285f6594228578a5324d672 (diff)
downloadpyramid-0c8ca237d1bb1ff0f6e3776a3c868edb040fa791.tar.gz
pyramid-0c8ca237d1bb1ff0f6e3776a3c868edb040fa791.tar.bz2
pyramid-0c8ca237d1bb1ff0f6e3776a3c868edb040fa791.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/quick_tutorial/tutorial_approach.rst')
-rw-r--r--docs/quick_tutorial/tutorial_approach.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/quick_tutorial/tutorial_approach.rst b/docs/quick_tutorial/tutorial_approach.rst
index 8da9f71b3..83b229746 100644
--- a/docs/quick_tutorial/tutorial_approach.rst
+++ b/docs/quick_tutorial/tutorial_approach.rst
@@ -15,7 +15,7 @@ This "Getting Started" tutorial is broken into independent steps, starting with
the smallest possible "single file WSGI app" example. Each of these steps
introduces a topic and a very small set of concepts via working code. The steps
each correspond to a directory in our workspace, where each step's directory is
-a Python package.
+a Python package. Source code used in this tutorial is located in the `Pyramid repository in the directory "docs/quick_tutorial" <https://github.com/Pylons/pyramid/>`_. You may ``git clone`` the repository, download, or copy-paste the source code. If you do so, then make sure you use the same branch as this documentation.
As we develop our tutorial, our directory tree will resemble the structure
below:
@@ -23,14 +23,14 @@ below:
.. code-block:: text
quick_tutorial
- │── env
- `── request_response
- `── tutorial
- │ │── __init__.py
- │ │── tests.py
- │ `── views.py
- │── development.ini
- `── setup.py
+ ├── env
+ └── request_response
+ ├── tutorial
+ │ ├── __init__.py
+ │ ├── tests.py
+ │ └── views.py
+ ├── development.ini
+ └── setup.py
Each of the directories in our ``quick_tutorial`` workspace (e.g., ``request_response``) is a *Python
project* (except as noted for the ``hello_world`` step). The ``tutorial``