Merge branch 'mediaelement' of https://github.com/microsoft/dotnet-podcasts into mediaelement

mediaelement
James Montemagno 2023-01-31 10:17:31 -08:00
commit 5568c97891
1 changed files with 4 additions and 3 deletions

View File

@ -16,7 +16,8 @@ public static class Config
} }
} }
public static string BaseWeb = $"https://dotnetpodcasts.azurewebsites.net/"; public static string BaseWeb = $"{Base}:5002/";
public static string APIUrl = $"https://podcastapica.ashyhill-df3dfdf5.eastus.azurecontainerapps.io/"; public static string Base = DeviceInfo.Platform == DevicePlatform.Android ? "http://10.0.2.2" : "http://localhost";
public static string ListenTogetherUrl = $"https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether"; public static string APIUrl = $"{Base}:5003/";
public static string ListenTogetherUrl = $"{Base}:5001/listentogether";
} }