Merge pull request #1376 from KWinston/master
Update quickstart.rst doc for awareness of Flask extensions
This commit is contained in:
commit
ec5811d0a1
1 changed files with 9 additions and 0 deletions
|
|
@ -873,6 +873,15 @@ can do it like this::
|
||||||
from werkzeug.contrib.fixers import LighttpdCGIRootFix
|
from werkzeug.contrib.fixers import LighttpdCGIRootFix
|
||||||
app.wsgi_app = LighttpdCGIRootFix(app.wsgi_app)
|
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
|
Deploying to a Web Server
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue