diff --git a/Assets/Scripts/Other/Endpoints.cs b/Assets/Scripts/Other/Endpoints.cs index 67abcfa..ca10dcb 100644 --- a/Assets/Scripts/Other/Endpoints.cs +++ b/Assets/Scripts/Other/Endpoints.cs @@ -1,6 +1,7 @@ public class Endpoints { - public static readonly string BASE_URL = "http://localhost:3342/api"; + private static readonly string HOST = "games.lncvrt.xyz"; + public static readonly string BASE_URL = $"https://${HOST}/api"; public static readonly string BERRYDASH_ENDPOINT = BASE_URL + "/berrydash"; public static readonly string LATEST_VERSION_ENDPOINT = BERRYDASH_ENDPOINT + "/latest-version"; public static readonly string LEADERBOARDS_ENDPOINT = BERRYDASH_ENDPOINT + "/leaderboards";