Move the default port to 16880.

1688 is used by MS KMS.
This commit is contained in:
Dan Albert
2022-03-07 17:56:10 -08:00
parent baae65919f
commit ca640ebabe
4 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ class ServerSettings(BaseSettings):
server_bind_address: str = "::1"
# This (and the address) will be passed the the front end as a query parameter.
server_port: int = 1688
server_port: int = 16880
# Enable to allow cross-origin requests from http://localhost:3000.
cors_allow_debug_server: bool = False