mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
90 lines
2.9 KiB
C#
90 lines
2.9 KiB
C#
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
using Microsoft.AspNetCore.Hosting.Server;
|
|
using Microsoft.AspNetCore.Hosting.Server.Features;
|
|
using Microsoft.Extensions.Options;
|
|
using Radzen;
|
|
using RadzenBlazorDemos;
|
|
using RadzenBlazorDemos.Data;
|
|
using RadzenBlazorDemos.Services;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorPages();
|
|
builder.Services.AddRazorComponents()
|
|
.AddInteractiveServerComponents().AddHubOptions(o =>
|
|
{
|
|
o.MaximumReceiveMessageSize = 10 * 1024 * 1024;
|
|
});
|
|
builder.Services.AddSingleton(sp =>
|
|
{
|
|
// Get the address that the app is currently running at
|
|
var server = sp.GetRequiredService<IServer>();
|
|
var addressFeature = server.Features.Get<IServerAddressesFeature>();
|
|
string baseAddress = addressFeature != null ? addressFeature.Addresses.First() : string.Empty;
|
|
return new HttpClient { BaseAddress = new Uri(baseAddress) };
|
|
});
|
|
|
|
// Add Radzen.Blazor services
|
|
builder.Services.AddRadzenComponents();
|
|
builder.Services.AddRadzenQueryStringThemeService();
|
|
|
|
// Demo services
|
|
builder.Services.AddScoped<CompilerService>();
|
|
builder.Services.AddScoped<ExampleService>();
|
|
|
|
builder.Services.AddDbContextFactory<NorthwindContext>();
|
|
|
|
builder.Services.AddScoped<NorthwindService>();
|
|
builder.Services.AddScoped<NorthwindODataService>();
|
|
builder.Services.AddSingleton<GitHubService>();
|
|
|
|
builder.Services.AddAIChatService(options =>
|
|
builder.Configuration.GetSection("AIChatService").Bind(options));
|
|
|
|
|
|
builder.Services.AddLocalization();
|
|
|
|
/* --> Uncomment to enable localization
|
|
var supportedCultures = new[]
|
|
{
|
|
new System.Globalization.CultureInfo("de-DE"),
|
|
};
|
|
|
|
builder.Services.Configure<RequestLocalizationOptions>(options =>
|
|
{
|
|
options.DefaultRequestCulture = new Microsoft.AspNetCore.Localization.RequestCulture("de-DE");
|
|
options.SupportedCultures = supportedCultures;
|
|
options.SupportedUICultures = supportedCultures;
|
|
});
|
|
*/
|
|
|
|
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();
|
|
}
|
|
|
|
/* --> Uncomment to enable localization
|
|
app.UseRequestLocalization(new RequestLocalizationOptions
|
|
{
|
|
DefaultRequestCulture = new Microsoft.AspNetCore.Localization.RequestCulture("de-DE"),
|
|
SupportedCultures = supportedCultures,
|
|
SupportedUICultures = supportedCultures
|
|
});
|
|
*/
|
|
app.UseStatusCodePagesWithReExecute("/not-found");
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
app.UseRouting();
|
|
app.UseAntiforgery();
|
|
app.MapRazorPages();
|
|
app.MapRazorComponents<RadzenBlazorDemos.Server.App>()
|
|
.AddInteractiveServerRenderMode().AddAdditionalAssemblies(typeof(RadzenBlazorDemos.Routes).Assembly);
|
|
app.MapControllers();
|
|
|
|
app.Run(); |