From e3a9c971cc22d149d8ea5a3e6433e948c594478b Mon Sep 17 00:00:00 2001 From: Rob Cole Date: Sat, 15 Jan 2022 16:11:10 -0800 Subject: [PATCH] Update default watcher port to 3000 Port 5000 is used by Apple internal services. Rails has been defaulting to port 3000 for years and hasn't run into any issues, so this seems like a very safe bet. --- src/web_app_skeleton/config/watch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web_app_skeleton/config/watch.yml b/src/web_app_skeleton/config/watch.yml index f4df5fe1..ea19b869 100644 --- a/src/web_app_skeleton/config/watch.yml +++ b/src/web_app_skeleton/config/watch.yml @@ -1,2 +1,2 @@ host: 127.0.0.1 -port: 5000 +port: 3000