19 lines
503 B
TypeScript
19 lines
503 B
TypeScript
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",
|
|
};
|
|
|
|
export const WEB_APP_URL = "https://playmancala.app";
|
|
|
|
export const PRIVAcY_URL = "https://playmancala.app/privacy"; |