From a2ef57c267709c81d5b42a3e629b38681f11fbdc Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Sat, 3 May 2025 13:23:13 -0400 Subject: [PATCH] Update banjo default port --- client/user_interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/user_interface.py b/client/user_interface.py index 78fce8a..47206e4 100644 --- a/client/user_interface.py +++ b/client/user_interface.py @@ -95,8 +95,8 @@ def main(): help="Private key file. Will be created if it does not exist." ) parser.add_argument("-s", "--server-url", - default="http://subrosa.makingwithcode.org", - help='Server URL. Use "http://127.0.0.1:5000" for a local server.' + default="https://subrosa.makingwithcode.org", + help='Server URL. Use "http://127.0.0.1:8000" for a local server.' ) args = parser.parse_args() ui = SubRosaUI(args.key, args.server_url)