Merge branch 'main' into develop

This commit is contained in:
Halit Aksoy 2024-03-24 19:07:32 +03:00
commit 1653fd5b89

View File

@ -1,4 +1,3 @@
export const useLocalServer = false;
export const isAlpha = true;
export type Server = {
@ -6,15 +5,13 @@ export type Server = {
wsServerAdress: string;
};
export const server: Server = useLocalServer ? {
serverAdress: "http://localhost:5005",
wsServerAdress: "ws://localhost:5005",
} : isAlpha ? {
serverAdress: "https://segin.one/mancala-backend-alpha",
wsServerAdress: "wss://segin.one/mancala-backend-alpha/",
} : {
serverAdress: "https://segin.one/mancala-backend-beta",
wsServerAdress: "wss://segin.one/mancala-backend-beta/",
};
export const LOCAL_PORT='localhost:5005';
export const server: Server = {
//@ts-ignore
serverAdress: process.env.SERVER_ADDRESS ? `https://${process.env.SERVER_ADDRESS}` : 'http://' + LOCAL_PORT,
//@ts-ignore
wsServerAdress: process.env.SERVER_ADDRESS ? `wss://${process.env.SERVER_ADDRESS}` : 'ws://' + LOCAL_PORT,
}
export const RTMT_WS_PING_INTERVAL = 1000, RTMT_WS_PING_INTERVAL_BUFFER_TIME = 2000;