bulletboards/ImageBoardServerApp/Program.cs
limited_dev 766e6054dc feat: email config is now loaded from fs
Signed-off-by: limited_dev <loginakkisativ@gmail.com>
2023-06-12 14:29:29 +02:00

53 lines
No EOL
1.5 KiB
C#

using ImageBoardServerApp.Auth;
using ImageBoardServerApp.Data;
using ImageBoardServerApp.Util;
using ImageThumbnail.AspNetCore.Middleware;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddAuthenticationCore();
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();
builder.Services.AddScoped<ProtectedSessionStorage>();
builder.Services.AddScoped<AuthenticationStateProvider, CustomAuthenticationStateProvider>();
builder.Services.AddSingleton<AppDBContext>();
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");
using (var serviceScope = app.Services.CreateScope())
{
var context = serviceScope.ServiceProvider.GetService<AppDBContext>();
context.Database.EnsureCreated();
}
ImageThumbnailOptions options = new ImageThumbnailOptions("wwwroot/img/", "thumb");
options.ImageQuality = 75L;
app.UseImageThumbnail(options);
//Load mail config
Postman.loadConfig();
//Log onto Mail Server
Postman.logon();
app.Run();