Changed default service url in MAUI so users can immediately run client app

This commit is contained in:
Shaun Walker 2022-10-17 08:12:04 -04:00
parent 45e2027c56
commit 0aeb4e9173

View File

@ -12,7 +12,8 @@ namespace Oqtane.Maui;
public static class MauiProgram
{
// the API service url
static string apiurl = "http://localhost:44357";
static string apiurl = "https://www.oqtane.org"; // for testing
//static string apiurl = "http://localhost:44357"; // for local development (Oqtane.Server must be already running for MAUI client to connect)
public static MauiApp CreateMauiApp()
{