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)