40cfa5ff97
Versionsfehler
89 lines
2.9 KiB
C#
89 lines
2.9 KiB
C#
using Aps_Single_Page_Anwendung.Models;
|
|
using Aps_Single_Page_Anwendung.Repositories;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.HttpsPolicy;
|
|
using Microsoft.AspNetCore.SpaServices.AngularCli;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Single_Page_Anwendung.Repositories;
|
|
|
|
namespace Aps_Single_Page_Anwendung
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
// Connection String den ich in der appsettings.json definiert habe
|
|
services.AddDbContext<FutterContext>(options => options.UseSqlServer(Configuration.GetConnectionString("FutterContext")));
|
|
|
|
|
|
services.AddControllersWithViews();
|
|
|
|
// Sorgt dafür, das jedesmal wenn ein ISpeiseRep angefragt wird, wird ein FileSpeiseRep zurückgegeben
|
|
services.AddScoped<ISpeiseRepository, EfSpeisenRepository>();
|
|
services.AddScoped<IKategorieRepository, EfKategorieRepository>();
|
|
|
|
|
|
// In production, the Angular files will be served from this directory
|
|
services.AddSpaStaticFiles(configuration =>
|
|
{
|
|
configuration.RootPath = "ClientApp/dist";
|
|
});
|
|
}
|
|
|
|
// 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())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
else
|
|
{
|
|
app.UseExceptionHandler("/Error");
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
if (!env.IsDevelopment())
|
|
{
|
|
app.UseSpaStaticFiles();
|
|
}
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller}/{action=Index}/{id?}");
|
|
});
|
|
|
|
app.UseSpa(spa =>
|
|
{
|
|
// To learn more about options for serving an Angular SPA from ASP.NET Core,
|
|
// see https://go.microsoft.com/fwlink/?linkid=864501
|
|
|
|
spa.Options.SourcePath = "ClientApp";
|
|
|
|
if (env.IsDevelopment())
|
|
{
|
|
spa.UseAngularCliServer(npmScript: "start");
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|