-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add a version of tachyon-client * Server status * debugging stuff * wip * fix request * debug messages * fix inverted logic * ranked * matchmaking * a bit more stylish * matchmaking poc works * clean up * syncing server status * fix token renewal * error handling * update deps * slight change to app suffix * wip * wip * better handling of current user * moved login page to root * cleanup login step * fix typing of userId * fix some initialization / typing * eslint * fix some more initialization issues * change server * wip * cleanup * await service initialization * fix host for bots * move installed version to a Set * drop latest game engine constant / latest game version * new api to start mutiplayer games * list all available engine versions * download any engine version * dropped engine db for plain reactive store * fix a bunch of issues on first load * fix byar:lastest download * simpler reconnection mecanism * update deps * fix checks * cleanup
- Loading branch information
Showing
69 changed files
with
2,142 additions
and
1,070 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
export const OAUTH_AUTHORIZATION_SERVER_URL = `https://server5.beyondallreason.info`; | ||
export const WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER_URL = `${OAUTH_AUTHORIZATION_SERVER_URL}/.well-known/oauth-authorization-server`; | ||
// TODO: this should reference a real server like server5.beyondallreason.info | ||
// there is an issue with port handling right now, so we can't use the real server | ||
// see https://github.com/beyond-all-reason/teiserver/pull/555 | ||
|
||
// export const TEISERVER_HOSTNAME_PORT = "server5.beyondallreason.info"; | ||
export const TEISERVER_HOSTNAME_PORT = "lobby-server-dev.beyondallreason.dev"; | ||
|
||
export const OAUTH_AUTHORIZATION_SERVER_URL = `https://${TEISERVER_HOSTNAME_PORT}`; | ||
export const OAUTH_WELL_KNOWN_URL = `${OAUTH_AUTHORIZATION_SERVER_URL}/.well-known/oauth-authorization-server`; | ||
export const OAUTH_CLIENT_ID = "generic_lobby"; | ||
export const OAUTH_SCOPE = "tachyon.lobby"; | ||
|
||
export const WS_SERVER_URL = `wss://${TEISERVER_HOSTNAME_PORT}/tachyon`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.