42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
using Microsoft.AspNetCore.Components.Web;
|
||
|
using Newsbot.Collector.Client;
|
||
|
using Newsbot.Portal.Blazor.Server;
|
||
|
using Newsbot.Portal.Blazor.Server.Data;
|
||
|
|
||
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
||
|
builder.Configuration
|
||
|
.AddJsonFile("appsettings.json", optional: true)
|
||
|
.AddEnvironmentVariables()
|
||
|
.Build();
|
||
|
;
|
||
|
// Add services to the container.
|
||
|
builder.Services.AddRazorPages();
|
||
|
builder.Services.AddServerSideBlazor();
|
||
|
builder.Services.AddSingleton<WeatherForecastService>();
|
||
|
//builder.Services.AddSingleton<ArticlesClient>();
|
||
|
|
||
|
Global.HttpClient = new HttpClient();
|
||
|
Global.DefaultInstanceUri = builder.Configuration.GetValue<string>("DefaultInstanceUri");
|
||
|
|
||
|
var app = builder.Build();
|
||
|
|
||
|
// Configure the HTTP request pipeline.
|
||
|
if (!app.Environment.IsDevelopment())
|
||
|
{
|
||
|
app.UseExceptionHandler("/Error");
|
||
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||
|
app.UseHsts();
|
||
|
}
|
||
|
|
||
|
app.UseHttpsRedirection();
|
||
|
|
||
|
app.UseStaticFiles();
|
||
|
|
||
|
app.UseRouting();
|
||
|
|
||
|
app.MapBlazorHub();
|
||
|
app.MapFallbackToPage("/_Host");
|
||
|
|
||
|
app.Run();
|