89 lines
2.8 KiB
C#
89 lines
2.8 KiB
C#
|
using Microsoft.AspNetCore.Builder;
|
||
|
using Microsoft.AspNetCore.Components;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.Extensions.Configuration;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
using Microsoft.Extensions.Options;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using TestAppRuna.Data;
|
||
|
using TestAppRuna.Entities;
|
||
|
using TestAppRuna.Services;
|
||
|
|
||
|
namespace TestAppRuna
|
||
|
{
|
||
|
public class Startup
|
||
|
{
|
||
|
public Startup(IConfiguration configuration)
|
||
|
{
|
||
|
Configuration = configuration;
|
||
|
}
|
||
|
|
||
|
public IConfiguration Configuration { get; }
|
||
|
|
||
|
// This method gets called by the runtime. Use this method to add services to the container.
|
||
|
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
|
||
|
public void ConfigureServices(IServiceCollection services)
|
||
|
{
|
||
|
services.AddControllers();
|
||
|
services.AddRazorPages();
|
||
|
services.AddServerSideBlazor();
|
||
|
services.AddSingleton<WeatherForecastService>();
|
||
|
|
||
|
services.AddScoped<IMathService, MathService>();
|
||
|
|
||
|
services.Configure<AppSettings>(Configuration);
|
||
|
services.AddScoped<AppSettings>(di => di.GetRequiredService<IOptionsMonitor<AppSettings>>().CurrentValue);
|
||
|
|
||
|
services.AddDbContext<ShopDbContext>(options =>
|
||
|
{
|
||
|
options.UseSqlite(Configuration.GetConnectionString("ShopDB"));
|
||
|
});
|
||
|
|
||
|
services.AddSwaggerDocument();
|
||
|
}
|
||
|
|
||
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||
|
{
|
||
|
if (env.IsDevelopment())
|
||
|
{
|
||
|
using (var scope = app.ApplicationServices.CreateScope())
|
||
|
{
|
||
|
var db = scope.ServiceProvider.GetRequiredService<ShopDbContext>();
|
||
|
db.Database.EnsureCreated();
|
||
|
}
|
||
|
}
|
||
|
if (env.IsDevelopment())
|
||
|
{
|
||
|
app.UseDeveloperExceptionPage();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
app.UseExceptionHandler("/Error");
|
||
|
}
|
||
|
app.UseStaticFiles();
|
||
|
|
||
|
app.UseOpenApi();
|
||
|
app.UseSwaggerUi3(settings =>
|
||
|
{
|
||
|
settings.DocumentTitle = "TestAppRuna";
|
||
|
});
|
||
|
|
||
|
app.UseRouting();
|
||
|
|
||
|
app.UseEndpoints(endpoints =>
|
||
|
{
|
||
|
endpoints.MapDefaultControllerRoute();
|
||
|
endpoints.MapBlazorHub();
|
||
|
endpoints.MapFallbackToPage("/_Host");
|
||
|
});
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|