summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-18 12:09:24 -0700
committerSteve Piercy <web@stevepiercy.com>2018-08-18 12:09:24 -0700
commite6e8bf5e2b67d67d5589ffc5f78b6fbb15c752a3 (patch)
treef584a31f6d679c97b7fd8e9a50a430852a5c8408 /docs/quick_tutorial
parent12abe106f13b92e82e4273348f2ab4db97ad48a2 (diff)
downloadpyramid-e6e8bf5e2b67d67d5589ffc5f78b6fbb15c752a3.tar.gz
pyramid-e6e8bf5e2b67d67d5589ffc5f78b6fbb15c752a3.tar.bz2
pyramid-e6e8bf5e2b67d67d5589ffc5f78b6fbb15c752a3.zip
Clean up code-blocks in qt/cookiecutters
Diffstat (limited to 'docs/quick_tutorial')
-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: