diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..78edb85 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn fablib:app \ No newline at end of file diff --git a/fablib.py b/fablib.py new file mode 100644 index 0000000..021728d --- /dev/null +++ b/fablib.py @@ -0,0 +1,9 @@ +from flask import Flask +app = Flask(__name__) + +@app.route('/') +def hello(): + return 'Hello World!' + +if __name__ == '__main__': + app.run() \ No newline at end of file