summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorStephen Martin <lockwood@opperline.com>2018-09-17 13:49:04 -0700
committerStephen Martin <lockwood@opperline.com>2018-09-17 13:49:04 -0700
commit28e688f1a41215cb6167f8e53de017ddb82b552f (patch)
tree5059546f20ad72990e1fa1a66fa9bcff96d41daa /docs/quick_tutorial
parentdfd0697dca6b0431b7d8398d93169c57be5b316b (diff)
downloadpyramid-28e688f1a41215cb6167f8e53de017ddb82b552f.tar.gz
pyramid-28e688f1a41215cb6167f8e53de017ddb82b552f.tar.bz2
pyramid-28e688f1a41215cb6167f8e53de017ddb82b552f.zip
name change
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/cookiecutters.rst6
-rw-r--r--docs/quick_tutorial/databases.rst2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/quick_tutorial/cookiecutters.rst b/docs/quick_tutorial/cookiecutters.rst
index 9734c36bc..e4a585a33 100644
--- a/docs/quick_tutorial/cookiecutters.rst
+++ b/docs/quick_tutorial/cookiecutters.rst
@@ -24,17 +24,17 @@ Steps
$VENV/bin/pip install cookiecutter
-#. Let's use the cookiecutter ``pyramid-cookiecutter-theonecc`` to create a starter :app:`Pyramid` project in the current directory, entering values at the prompts as shown below for the following command.
+#. Let's use the cookiecutter ``pyramid-cookiecutter-starter`` to create a starter :app:`Pyramid` project in the current directory, entering values at the prompts as shown below for the following command.
.. code-block:: bash
- $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-theonecc --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.
.. code-block:: text
- You've cloned ~/.cookiecutters/pyramid-cookiecutter-theonecc before.
+ You've cloned ~/.cookiecutters/pyramid-cookiecutter-starter before.
Is it okay to delete and re-clone it? [yes]: yes
project_name [Pyramid Scaffold]: cc_starter
repo_name [cc_starter]: cc_starter
diff --git a/docs/quick_tutorial/databases.rst b/docs/quick_tutorial/databases.rst
index 3082dc4d2..2e656f565 100644
--- a/docs/quick_tutorial/databases.rst
+++ b/docs/quick_tutorial/databases.rst
@@ -21,7 +21,7 @@ storage and retrieval for the wiki pages in the previous step.
.. note::
- The Pyramid cookiecutter ``pyramid-cookiecutter-theonecc`` is really
+ The Pyramid cookiecutter ``pyramid-cookiecutter-starter`` is really
helpful for getting a SQLAlchemy project going, including generation of
the console script. Since we want to see all the decisions, we will forgo
convenience in this tutorial, and wire it up ourselves.