Initial commit

This commit is contained in:
Janus C. H. Knudsen 2026-02-03 00:17:08 +01:00
commit 77d35ff965
51 changed files with 5591 additions and 0 deletions

39
Program.cs Normal file
View file

@ -0,0 +1,39 @@
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();