From f1398683b837db0eda12928803fed93f7ceb0f19 Mon Sep 17 00:00:00 2001 From: Samuel Chan Date: Sat, 19 Oct 2019 16:25:32 +0700 Subject: [PATCH] Remove the port number 8080 parameter Removing the parameter as it only adds confusion to students. The port 5000 is the listening port in the video examples. --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 36721a0..7539a2e 100644 --- a/app.py +++ b/app.py @@ -11,4 +11,4 @@ def hello(): return 'I am good, how about you?' if __name__ == "__main__": - app.run(host="0.0.0.0", port=8080) + app.run(host="0.0.0.0")