43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
using AuthorBuddy.Web.Components;
|
|
using AuthorBuddy.Web.Data;
|
|
using AuthorBuddy.Web.Models;
|
|
using AuthorBuddy.Web.Services;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddRazorComponents()
|
|
.AddInteractiveServerComponents();
|
|
|
|
builder.Services.AddSingleton<OllamaSettings>();
|
|
builder.Services.AddSingleton<IOllamaService, OllamaService>();
|
|
builder.Services.AddSingleton<IFileScannerService, FileScannerService>();
|
|
builder.Services.AddSingleton<ISettingsService, SettingsService>();
|
|
builder.Services.AddScoped<IThemeService, ThemeService>();
|
|
builder.Services.AddSingleton<IProjectService, ProjectService>();
|
|
|
|
builder.Services.AddDbContextFactory<AppDbContext>(options =>
|
|
options.UseSqlite(Constants.SQLiteConnection));
|
|
|
|
var app = builder.Build();
|
|
|
|
AppDbContext.SetupVecExtension(Constants.SQLiteConnection);
|
|
|
|
await using var db = await app.Services.GetRequiredService<IDbContextFactory<AppDbContext>>().CreateDbContextAsync();
|
|
await db.Database.MigrateAsync();
|
|
|
|
var settingsInit = app.Services.GetRequiredService<ISettingsService>();
|
|
await settingsInit.InitializeAsync();
|
|
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
|
}
|
|
app.UseStatusCodePagesWithReExecute("/not-found", createScopeForStatusCodePages: true);
|
|
app.UseAntiforgery();
|
|
|
|
app.MapStaticAssets();
|
|
app.MapRazorComponents<App>()
|
|
.AddInteractiveServerRenderMode();
|
|
|
|
app.Run();
|