summaryrefslogtreecommitdiff
path: root/docs/getting_started/databases.rst
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2013-08-11 09:53:00 -0400
committerPaul Everitt <paul@agendaless.com>2013-08-11 09:53:00 -0400
commitae901436a61563968cc31cc636f1fbeb5e85b528 (patch)
tree8ce7a18dd4913f7195c5a013ab03eb64ae21180d /docs/getting_started/databases.rst
parentd4bd291fd5ca51bbbeec487f2011476706a5952f (diff)
downloadpyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.tar.gz
pyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.tar.bz2
pyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.zip
Per discussion with Chris, just wrap up "getting started" as the Quick Tour. Still need to do more linking and perhaps add a section on root factories, authorization, authentication.
Diffstat (limited to 'docs/getting_started/databases.rst')
-rw-r--r--docs/getting_started/databases.rst21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/getting_started/databases.rst b/docs/getting_started/databases.rst
deleted file mode 100644
index c415ed2db..000000000
--- a/docs/getting_started/databases.rst
+++ /dev/null
@@ -1,21 +0,0 @@
-=========================
-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!