generated from egmont11/ASP.Net-Core-MVC-Template
53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
using dotenv.net;
|
|
using Eshop.Infrastructure;
|
|
using Eshop.Infrastructure.Data;
|
|
using Eshop.Infrastructure.Persistence;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Eshop.Web;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
DotEnv.Load();
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddControllersWithViews();
|
|
builder.Services.AddInfrastructure(builder.Configuration);
|
|
|
|
var app = builder.Build();
|
|
|
|
using (var scope = app.Services.CreateScope())
|
|
{
|
|
var db = scope.ServiceProvider.GetRequiredService<AppDbContext>();
|
|
if (db.Database.GetPendingMigrations().Any())
|
|
db.Database.Migrate();
|
|
|
|
var userManager = scope.ServiceProvider.GetRequiredService<UserManager<UserEntity>>();
|
|
var roleManager = scope.ServiceProvider.GetRequiredService<RoleManager<IdentityRole>>();
|
|
DataSeeder.SeedAsync(userManager, roleManager).GetAwaiter().GetResult();
|
|
}
|
|
|
|
if (!app.Environment.IsDevelopment())
|
|
app.UseExceptionHandler("/Home/Error");
|
|
|
|
app.UseRouting();
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
|
|
app.MapStaticAssets();
|
|
app.MapControllerRoute(
|
|
name: "areas",
|
|
pattern: "{area:exists}/{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}")
|
|
.WithStaticAssets();
|
|
|
|
app.Run();
|
|
}
|
|
}
|