Initial commit
This commit is contained in:
commit
77d35ff965
51 changed files with 5591 additions and 0 deletions
39
Program.cs
Normal file
39
Program.cs
Normal 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();
|
||||
Loading…
Add table
Add a link
Reference in a new issue