From 371ebd76ac5eb87a47fea84dfa8f14c23942e8b3 Mon Sep 17 00:00:00 2001 From: John Washam Date: Thu, 30 Jun 2016 02:09:06 +0000 Subject: [PATCH] Renamed entry --- flash_cards.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flash_cards.py b/flash_cards.py index 992b4fc..c90b3e2 100644 --- a/flash_cards.py +++ b/flash_cards.py @@ -4,9 +4,9 @@ app = Flask(__name__) @app.route('/') -def hello_world(): +def index(): return 'Hello World, you ready to learn?' if __name__ == '__main__': - app.run(host='0.0.0.0', port=8080) + app.run(host='0.0.0.0', port=5000)