summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-05-11 03:45:02 +0000
committerChris McDonough <chrism@agendaless.com>2009-05-11 03:45:02 +0000
commit7a0439fe988499b58df7dfcd5dd9cce480b214b6 (patch)
tree0a2fe6995d2e881c6ad85bf471a069cc6dabc86d /docs
parent0ce7d36aea659cc9bdb002d6f994565ebf8efc59 (diff)
downloadpyramid-7a0439fe988499b58df7dfcd5dd9cce480b214b6.tar.gz
pyramid-7a0439fe988499b58df7dfcd5dd9cce480b214b6.tar.bz2
pyramid-7a0439fe988499b58df7dfcd5dd9cce480b214b6.zip
- Added a ``routesalchemy`` Paster template. This paster template
sets up a BFG project that uses SQAlchemy (with SQLite) and uses Routes exclusively to resolve URLs (no traversal root factory is used). This template can be used via ``paster create -t bfg_routesalchemy``.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/project.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 66ce467f9..f29d67099 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -87,10 +87,12 @@ application's Python code and templates.
name during ``paster create`` by adding the project name to the
command line, e.g. ``paster create -t bfg_starter MyProject``.
-.. note:: A convenience :term:`Paste` template for projects which will
- depend on :term:`ZODB` projects also exists. Use ``paster create
- -t bfg_zodb`` to use this template instead of the ``bfg_starter``
- template.
+.. note:: Convenience :term:`Paste` templates for projects which will
+ depend on :term:`ZODB` or `SQLAlchemy
+ <http://www.sqlalchemy.org/>`_ also exist. Use ``paster create -t
+ bfg_zodb`` to create a project that depends on ZODB. Use ``paster
+ create -t bfg_routesalchemy`` to create a project that depends on
+ SQLAlchemy+Routes.
Installing your Newly Created Project for Development
-----------------------------------------------------