From a9b58f800675cbe4c4db4d6feeb02d220adf6ace Mon Sep 17 00:00:00 2001 From: rav4s Date: Thu, 17 Dec 2020 16:40:02 -0600 Subject: [PATCH] debugging --- garage_door_script.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/garage_door_script.py b/garage_door_script.py index 5804fc0..f950305 100644 --- a/garage_door_script.py +++ b/garage_door_script.py @@ -2,7 +2,9 @@ import time from flask import Flask app = Flask(__name__) -print("hello world") @app.route('/') def hello_world(): return 'Hello, World!' + +if __name__ == '__main__': + app.run(host='0.0.0.0')