// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IServiceProvider serviceProvider, AppDbContext context) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/errors/Error500"); app.UseHsts(); } app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseRouting(); app.UseSession(); app.UseAuthentication(); app.UseAuthorization(); app.UseStatusCodePagesWithRedirects("/Errors/{0}"); app.UseEndpoints(endpoints => { endpoints.MapRazorPages(); }); RolesService.CreateRoles(serviceProvider).Wait(); RolesService.CreateRootUser(serviceProvider, Configuration).Wait(); }