Add extensions section to Quickstart documentation

This commit is contained in:
Winston Kouch 2015-03-11 23:54:09 -04:00
parent 12cd14a075
commit 5f8c850895

View file

@ -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
-------------------------