diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-09-19 19:09:19 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-09-19 19:09:19 +0000 |
| commit | 7a1f7a0e76dac871e90539934b80f751865a41c9 (patch) | |
| tree | 6d339a6d1c02fc078024ac6caca9d03129eb5538 /docs/narr | |
| parent | 5e829c9e97fe034a8777ecb2b7c4271b24e7151e (diff) | |
| download | pyramid-7a1f7a0e76dac871e90539934b80f751865a41c9.tar.gz pyramid-7a1f7a0e76dac871e90539934b80f751865a41c9.tar.bz2 pyramid-7a1f7a0e76dac871e90539934b80f751865a41c9.zip | |
- Added a tutorial which explains how to add ZEO to a ZODB-based
``repoze.bfg`` application.
Diffstat (limited to 'docs/narr')
| -rw-r--r-- | docs/narr/project.rst | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 131a8ff48..72d78d98a 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -89,15 +89,23 @@ 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:: 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 and :term:`URL dispatch` (no :term:`traversal`). Use - ``paster create -t bfg_alchemy`` to create a project that depends - on SQLAlchemy but *not* :term:`URL dispatch` (uses only - :term:`traversal`). +.. _additional_paster_templates: + +Additional Paster Templates +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +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 and :term:`URL dispatch` (no :term:`traversal`). + +- Use ``paster create -t bfg_alchemy`` to create a project that + depends on SQLAlchemy but *not* :term:`URL dispatch` (uses only + :term:`traversal`). Installing your Newly Created Project for Development ----------------------------------------------------- |
