mancala/apps/mobile/src/const/config.ts

19 lines
507 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://api.playmancala.app",
wsServerAdress: "wss://api.playmancala.app",
};
export const WEB_APP_URL = "https://playmancala.app";
export const PRIVAcY_URL = "https://playmancala.app/privacy";