LuisCastilloH
2018-05-16 fa9291399199c2f9d80d532a0e8c3dd50d8563fb
commit | author | age
e26700 1 .. _bfg_sql_wiki_tutorial:
CM 2
1c0a3d 3 SQLAlchemy + URL dispatch wiki tutorial
53d3c3 4 =======================================
e26700 5
1c0a3d 6 This tutorial introduces an :term:`SQLAlchemy` and :term:`URL dispatch`-based
b29848 7 :app:`Pyramid` application to a developer familiar with Python.  When finished, the developer will have created a basic wiki
1c0a3d 8 application with authentication and authorization.
e26700 9
fa9291 10 For cut and paste purposes, the source code for all stages of this
L 11 tutorial can be browsed on GitHub at `GitHub <https://github.com/Pylons/pyramid/>`_ for a specific branch or version under ``docs/tutorials/wiki2/src``,
445eb8 12 which corresponds to the same location if you have Pyramid sources.
e26700 13
CM 14 .. toctree::
15    :maxdepth: 2
16
17    background
bb7541 18    design
e26700 19    installation
CM 20    basiclayout
21    definingmodels
22    definingviews
659a25 23    authentication
e26700 24    authorization
487f7e 25    tests
e26700 26    distributing