moving test apps into place with proper check_deploy scripts

This commit is contained in:
Jeff Lindsay
2013-06-23 17:17:56 -07:00
parent 67c727a935
commit ef7ac5bbdb
12 changed files with 10 additions and 12 deletions

View File

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

View File

@@ -0,0 +1,2 @@
#!/bin/bash
set -e; test "$(curl -s $1)" == "python/flask"

View File

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

View File

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