From 5f8c850895dc879379d5fe0df9e1713f4e00694c Mon Sep 17 00:00:00 2001 From: Winston Kouch Date: Wed, 11 Mar 2015 23:54:09 -0400 Subject: [PATCH] Add extensions section to Quickstart documentation --- docs/quickstart.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 39957d77..4906d025 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -873,6 +873,15 @@ can do it like this:: from werkzeug.contrib.fixers import LighttpdCGIRootFix app.wsgi_app = LighttpdCGIRootFix(app.wsgi_app) +Using Flask Extensions +---------------------- + +Extensions are packages that help you accomplish common tasks. For +example, Flask-SQLAlchemy provides SQLAlchemy support that makes it simple +and easy to use with Flask. + +For more on Flask extensions, have a look at :ref:`extensions`. + Deploying to a Web Server -------------------------