Adding wsgi entry and wsgi config

This commit is contained in:
John Washam
2016-06-30 02:08:43 +00:00
parent f5f45f0605
commit 0a73501501
3 changed files with 18 additions and 0 deletions

View File

@@ -1,12 +0,0 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World, you ready to learn?'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080)