Renamed entry

This commit is contained in:
John Washam
2016-06-30 02:09:06 +00:00
parent 0a73501501
commit 371ebd76ac

View File

@@ -4,9 +4,9 @@ app = Flask(__name__)
@app.route('/') @app.route('/')
def hello_world(): def index():
return 'Hello World, you ready to learn?' return 'Hello World, you ready to learn?'
if __name__ == '__main__': if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080) app.run(host='0.0.0.0', port=5000)