summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/cookiecutters.rst
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2018-08-21 01:44:55 -0500
committerGitHub <noreply@github.com>2018-08-21 01:44:55 -0500
commit820a752645b460ea8009b07a75c752ab09c53dec (patch)
tree14616d81a7abedfe523c057e71ed7b2aca680754 /docs/quick_tutorial/cookiecutters.rst
parentdf8598a2658632f709a64e8076cce02ca49de8e6 (diff)
parent254710cb716dccfe536b20d077e3cb79be19c6b3 (diff)
downloadpyramid-820a752645b460ea8009b07a75c752ab09c53dec.tar.gz
pyramid-820a752645b460ea8009b07a75c752ab09c53dec.tar.bz2
pyramid-820a752645b460ea8009b07a75c752ab09c53dec.zip
Merge pull request #3330 from stevepiercy/docs-code-style
Docs code style
Diffstat (limited to 'docs/quick_tutorial/cookiecutters.rst')
-rw-r--r--docs/quick_tutorial/cookiecutters.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/quick_tutorial/cookiecutters.rst b/docs/quick_tutorial/cookiecutters.rst
index f8568206d..045808884 100644
--- a/docs/quick_tutorial/cookiecutters.rst
+++ b/docs/quick_tutorial/cookiecutters.rst
@@ -28,7 +28,7 @@ Steps
.. code-block:: bash
- $ $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master
+ $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master
If prompted for the first item, accept the default ``yes`` by hitting return.
@@ -49,20 +49,20 @@ Steps
.. code-block:: bash
# Change directory into your newly created project.
- $ cd cc_starter
+ cd cc_starter
# Create a new virtual environment...
- $ python3 -m venv env
+ python3 -m venv env
# ...where we upgrade packaging tools...
- $ env/bin/pip install --upgrade pip setuptools
+ env/bin/pip install --upgrade pip setuptools
# ...and into which we install our project.
- $ env/bin/pip install -e .
+ env/bin/pip install -e .
#. Start up the application by pointing :app:`Pyramid`'s ``pserve`` command at the
project's (generated) configuration file:
.. code-block:: bash
- $ env/bin/pserve development.ini --reload
+ env/bin/pserve development.ini --reload
On start up, ``pserve`` logs some output: