Skip to content

Instantly share code, notes, and snippets.

@gisthero
Created May 13, 2013 10:50
Show Gist options
  • Save gisthero/5567514 to your computer and use it in GitHub Desktop.
Save gisthero/5567514 to your computer and use it in GitHub Desktop.
Flask on Heroku
import os
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World!'
web: gunicorn hello:app
Flask==0.9
Jinja2==2.6
Werkzeug==0.8.3
gunicorn==0.17.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment