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

19 lines
507 B
TypeScript
Raw Normal View History

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",
} : {
2024-12-08 23:25:45 +03:00
serverAdress: "https://api.playmancala.app",
wsServerAdress: "wss://api.playmancala.app",
2024-03-25 02:56:54 +03:00
};
export const WEB_APP_URL = "https://playmancala.app";
export const PRIVAcY_URL = "https://playmancala.app/privacy";