From c9a3db4cf19716217d2e32c061b94a3016bda6fa Mon Sep 17 00:00:00 2001 From: ScriptAutomate Date: Sun, 31 May 2020 16:46:48 -0500 Subject: [PATCH 1/2] Fixing readme port reference --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2cd6ee1..b2ac694 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,10 @@ $ # (Powershell) $env:FLASK_ENV = "development" $ $ # Start the application (development mode) $ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1) -$ # --port=5000 - specify the app port (default 5000) -$ flask run --host=0.0.0.0 --port=5000 +$ # --port=5005 - specify the app port (default 5000) +$ flask run --host=0.0.0.0 --port=5005 $ -$ # Access the dashboard in browser: http://127.0.0.1:5000/ +$ # Access the dashboard in browser: http://127.0.0.1:5005/ ```
@@ -95,7 +95,7 @@ $ cd flask-dashboard-material-dark $ sudo docker-compose pull && sudo docker-compose build && sudo docker-compose up -d ``` -Visit `http://localhost:5000` in your browser. The app should be up & running. +Visit `http://localhost:5005` in your browser. The app should be up & running.
From eab6637ba38bd23f5f214a96adffb1e508da083b Mon Sep 17 00:00:00 2001 From: ScriptAutomate Date: Sun, 31 May 2020 16:52:29 -0500 Subject: [PATCH 2/2] Changed port 5000 to port 5005 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2ac694..c42af2b 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ $ # (Powershell) $env:FLASK_ENV = "development" $ $ # Start the application (development mode) $ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1) -$ # --port=5005 - specify the app port (default 5000) +$ # --port=5005 - specify the app port (default 5005) $ flask run --host=0.0.0.0 --port=5005 $ $ # Access the dashboard in browser: http://127.0.0.1:5005/