removed building angular app from ci-cd
All checks were successful
Restart Docker Container on Production / build (pull_request) Successful in 3m9s

This commit is contained in:
iTob 2024-09-26 12:33:43 +02:00
parent f185b54902
commit f322fb4173
4 changed files with 6 additions and 6 deletions

View File

@ -32,7 +32,7 @@ namespace RBLNews.Shared.Services
public async Task LoadFeeds()
{
Feeds = await httpClient.GetFromJsonAsync<RssVM>($"{this._configService.AppSettings.BackendApiUrl}/api/feeds") ?? new RssVM();
Feeds = await httpClient.GetFromJsonAsync<RssVM>($"{this._configService.AppSettings.BackendApiUrl}/feeds") ?? new RssVM();
DataChanged.Invoke();
}
}

View File

@ -6,6 +6,6 @@
}
},
"App": {
"BackendApiUrl": "https://localhost:5147"
"BackendApiUrl": "https://localhost:7127"
}
}

View File

@ -7,6 +7,6 @@
},
"AllowedHosts": "*",
"App": {
"BackendApiUrl": "https://rblnews.de"
"BackendApiUrl": "https://rblnews.de/api"
}
}

View File

@ -7,6 +7,6 @@
},
"AllowedHosts": "*",
"App": {
"BackendApiUrl": "https://rbl.wohlleben.dev"
"BackendApiUrl": "https://rbl.wohlleben.dev/api"
}
}