Update banjo default port

This commit is contained in:
Chris Proctor
2025-05-03 13:23:13 -04:00
parent ef366961e1
commit a2ef57c267

View File

@@ -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)