RBLNews/RBLNews.Web/Program.cs
Tobias Wohlleben aa03b6ae83
All checks were successful
Restart Docker Container on Production / build (pull_request) Successful in 3m13s
umbau auf enviroment appsettings
2024-09-24 14:57:27 +02:00

57 lines
1.7 KiB
C#

using RBLNews.Shared.Services;
using RBLNews.Web.Components;
using RBLNews.Web.Services;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddBlazorBootstrap();
builder.Services.AddSingleton<IFeedDataService, FeedDataService>();
builder.Services.AddSingleton<AppLifecycleService>();
builder.Services.AddSingleton<EnvironmentVariablesService>();
builder.Services.AddSingleton<ConfigService>();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error", createScopeForErrors: true);
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
using var serviceScope = app.Services.CreateScope();
IServiceProvider services = serviceScope.ServiceProvider;
var logger = LoggerFactory.Create(config =>
{
config.AddConsole();
}).CreateLogger("Program");
ConfigService configService = services.GetRequiredService<ConfigService>();
var a = configService.AppSettings;
EnvironmentVariablesService environmentVariablesService = services.GetRequiredService<EnvironmentVariablesService>();
string? backendApiUrl = environmentVariablesService.RblApiUrl;
if (string.IsNullOrEmpty(backendApiUrl))
{
throw new Exception($"can't instantiate services, due to paramters are null. backendApiUrl: '{backendApiUrl}'");
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAntiforgery();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode()
.AddAdditionalAssemblies(typeof( RBLNews.Shared._Imports ).Assembly);
app.Run();