summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/installation.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-11-12 20:41:29 -0500
committerChris McDonough <chrism@plope.com>2011-11-12 20:41:29 -0500
commit818f8cab1dff781bbacf94cbabb4bec3825e081e (patch)
treeedb7c6d89ab6ccf98d5439e59708e7e3c3336e7d /docs/tutorials/wiki2/installation.rst
parent8595a7757b9347597e5664cc2c631f494825103e (diff)
downloadpyramid-818f8cab1dff781bbacf94cbabb4bec3825e081e.tar.gz
pyramid-818f8cab1dff781bbacf94cbabb4bec3825e081e.tar.bz2
pyramid-818f8cab1dff781bbacf94cbabb4bec3825e081e.zip
- The ``alchemy`` scaffold has been removed.
- The ``routesalchemy`` scaffold has been renamed ``alchemy``.
Diffstat (limited to 'docs/tutorials/wiki2/installation.rst')
-rw-r--r--docs/tutorials/wiki2/installation.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst
index ded36f6e2..147f7f563 100644
--- a/docs/tutorials/wiki2/installation.rst
+++ b/docs/tutorials/wiki2/installation.rst
@@ -84,7 +84,7 @@ Making a Project
Your next step is to create a project. :app:`Pyramid` supplies a
variety of scaffolds to generate sample projects. We will use the
-``routesalchemy`` scaffold, which generates an application
+``alchemy`` scaffold, which generates an application
that uses :term:`SQLAlchemy` and :term:`URL dispatch`.
The below instructions assume your current working directory is the
@@ -94,15 +94,15 @@ On UNIX:
.. code-block:: text
- $ bin/pcreate -s routesalchemy tutorial
+ $ bin/pcreate -s alchemy tutorial
On Windows:
.. code-block:: text
- c:\pyramidtut> Scripts\pcreate -s routesalchemy tutorial
+ c:\pyramidtut> Scripts\pcreate -s alchemy tutorial
-.. note:: If you are using Windows, the ``routesalchemy``
+.. note:: If you are using Windows, the ``alchemy``
scaffold may not deal gracefully with installation into a
location that contains spaces in the path. If you experience
startup problems, try putting both the virtualenv and the project
@@ -222,10 +222,10 @@ page. You can read more about the purpose of the icon at
:ref:`debug_toolbar`. It allows you to get information about your
application while you develop.
-Decisions the ``routesalchemy`` Scaffold Has Made For You
+Decisions the ``alchemy`` Scaffold Has Made For You
=================================================================
-Creating a project using the ``routesalchemy`` scaffold makes
+Creating a project using the ``alchemy`` scaffold makes
the following assumptions:
- you are willing to use :term:`SQLAlchemy` as a database access tool