added python test app

This commit is contained in:
Felipe Coury
2013-06-21 02:57:48 -03:00
parent f9ffc72f5e
commit fa9757b784
3 changed files with 14 additions and 0 deletions

1
tests/python/Procfile Normal file
View File

@@ -0,0 +1 @@
web: gunicorn hello:app

8
tests/python/hello.py Normal file
View File

@@ -0,0 +1,8 @@
import os
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World!'

View File

@@ -0,0 +1,5 @@
Flask==0.9
Jinja2==2.6
Werkzeug==0.8.3
gunicorn==0.17.2