summaryrefslogtreecommitdiff
path: root/docs/getting_started/databases.rst
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2013-08-09 11:37:48 -0400
committerPaul Everitt <paul@agendaless.com>2013-08-09 11:37:48 -0400
commitd4bd291fd5ca51bbbeec487f2011476706a5952f (patch)
tree77052c5204e0045f59b740ff9d1ae253394524da /docs/getting_started/databases.rst
parent65d1719fc5ce4ed4e87c45b1e4279c30930b274e (diff)
downloadpyramid-d4bd291fd5ca51bbbeec487f2011476706a5952f.tar.gz
pyramid-d4bd291fd5ca51bbbeec487f2011476706a5952f.tar.bz2
pyramid-d4bd291fd5ca51bbbeec487f2011476706a5952f.zip
Lots of updates, move more code out of code-blocks into working package code. About to tackle cool Pyramid stuff.
Diffstat (limited to 'docs/getting_started/databases.rst')
-rw-r--r--docs/getting_started/databases.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/getting_started/databases.rst b/docs/getting_started/databases.rst
index f982643af..c415ed2db 100644
--- a/docs/getting_started/databases.rst
+++ b/docs/getting_started/databases.rst
@@ -2,3 +2,20 @@
Databases With SQLAlchemy
=========================
+We can now visit our sample at
+`http://localhost:6543/ <http://localhost:6543/>`_. Some choices that
+the scaffold helped us with:
+
+- A ``setup.py`` with appropriate dependencies
+
+- Connection strings and integration in our ``development.ini`` file
+
+- A console script which we ran above to initialize the database
+
+- The SQLAlchemy engine integrated into the ``Configurator`` on
+ application startup
+
+- Python modules for the SQLAlchemy models and the Pyramid views that
+ go with them
+
+- Some unit tests...yummy!