mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
moving test apps into place with proper check_deploy scripts
This commit is contained in:
1
tests/apps/python-flask/Procfile
Normal file
1
tests/apps/python-flask/Procfile
Normal file
@@ -0,0 +1 @@
|
||||
web: gunicorn hello:app
|
||||
2
tests/apps/python-flask/check_deploy
Executable file
2
tests/apps/python-flask/check_deploy
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
set -e; test "$(curl -s $1)" == "python/flask"
|
||||
8
tests/apps/python-flask/hello.py
Normal file
8
tests/apps/python-flask/hello.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import os
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def hello():
|
||||
return 'python/flask'
|
||||
5
tests/apps/python-flask/requirements.txt
Normal file
5
tests/apps/python-flask/requirements.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
Flask==0.9
|
||||
Jinja2==2.6
|
||||
Werkzeug==0.8.3
|
||||
gunicorn==0.17.2
|
||||
|
||||
Reference in New Issue
Block a user