2024-03-25 02:56:54 +03:00
|
|
|
export const useLocalServer = false;
|
|
|
|
|
export const isAlpha = true;
|
|
|
|
|
|
|
|
|
|
export type Server = {
|
|
|
|
|
serverAdress: string;
|
|
|
|
|
wsServerAdress: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const server: Server = useLocalServer ? {
|
|
|
|
|
serverAdress: "http://localhost:5005",
|
|
|
|
|
wsServerAdress: "ws://localhost:5005",
|
|
|
|
|
} : {
|
|
|
|
|
serverAdress: "https://mancala.segin.one",
|
|
|
|
|
wsServerAdress: "wss://mancala.segin.one",
|
|
|
|
|
};
|
|
|
|
|
|
2024-04-05 01:41:42 +03:00
|
|
|
export const WEB_APP_URL = "https://playmancala.app";
|
|
|
|
|
|
|
|
|
|
export const PRIVAcY_URL = "https://playmancala.app/privacy";
|