initial commit
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using ASPNET.BackEnd;
|
||||
using ASPNET.BackEnd.Common.Middlewares;
|
||||
using ASPNET.FrontEnd;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
//>>> Create Logs folder for Serilog
|
||||
var logPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "app_data", "logs");
|
||||
if (!Directory.Exists(logPath))
|
||||
{
|
||||
Directory.CreateDirectory(logPath);
|
||||
}
|
||||
|
||||
builder.Services.AddBackEndServices(builder.Configuration);
|
||||
builder.Services.AddFrontEndServices();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
app.RegisterBackEndBuilder(app.Environment, app, builder.Configuration);
|
||||
|
||||
if (!app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseExceptionHandler("/Error");
|
||||
app.UseHsts();
|
||||
}
|
||||
|
||||
app.UseRouting();
|
||||
app.UseCors();
|
||||
app.UseMiddleware<GlobalApiExceptionHandlerMiddleware>();
|
||||
app.UseAuthentication();
|
||||
app.UseAuthorization();
|
||||
app.MapStaticAssets();
|
||||
|
||||
app.MapFrontEndRoutes();
|
||||
app.MapBackEndRoutes();
|
||||
|
||||
app.Run();
|
||||
Reference in New Issue
Block a user