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)