39 lines
834 B
C#
39 lines
834 B
C#
using PlanTempusAdmin.Services;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorPages();
|
|
|
|
// Register HttpClient for CaddyService
|
|
builder.Services.AddHttpClient<CaddyService>();
|
|
|
|
// Register BackupService
|
|
builder.Services.AddScoped<BackupService>();
|
|
|
|
// Register ForgejoService
|
|
builder.Services.AddScoped<ForgejoService>();
|
|
|
|
// Register AzureStorageService
|
|
builder.Services.AddSingleton<AzureStorageService>();
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Error");
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapStaticAssets();
|
|
app.MapRazorPages()
|
|
.WithStaticAssets();
|
|
|
|
app.Run();
|