Merge pull request #427 from kevinburke/fix-existing-tutorial

add heroku/deploy options to quickstart, and add clearer links in tutorial setup
This commit is contained in:
Ron DuPlain 2012-03-13 11:47:04 -07:00
commit 1d1db80e06
2 changed files with 26 additions and 10 deletions

View file

@ -826,3 +826,19 @@ can do it like this::
from werkzeug.contrib.fixers import LighttpdCGIRootFix
app.wsgi_app = LighttpdCGIRootFix(app.wsgi_app)
Deploying to a Web Server
-------------------------
If you want to make your Flask app available to the Internet at large, `Heroku
<http://www.heroku.com>`_ is very easy to set up and will run small Flask
applications for free. `Check out their tutorial on how to deploy Flask apps on
their service <http://devcenter.heroku.com/articles/python>`_.
There are a number of other websites that will host your Flask app and make it
easy for you to do so.
- `Deploying Flask on ep.io <https://www.ep.io/docs/quickstart/flask/>`_
- `Deploying Flask on Webfaction <http://flask.pocoo.org/snippets/65/>`_
- `Deploying Flask on Google App Engine <https://github.com/kamalgill/flask-appengine-template>`_
- `Sharing your Localhost Server with Localtunnel <http://flask.pocoo.org/snippets/89/>`_