You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.1 KiB
59 lines
2.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using CoviDok.Data.MySQL;
|
|
using CoviDok.Data.SessionProviders;
|
|
using CoviDok.Data.StorageProviders;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace CoviDok
|
|
{
|
|
public class Startup
|
|
{
|
|
// 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, IConfiguration configuration)
|
|
{
|
|
services.AddMvc(options => options.EnableEndpointRouting = false).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
|
|
services.AddSingleton<IConfiguration>(configuration);
|
|
var minioSection = configuration.GetSection("MinioSettings");
|
|
services.Configure<MinioSettings>(minioSection);
|
|
MySqlContext.MySqlString = configuration.GetConnectionString("MySQLDatabase");
|
|
RedisProvider.Host = configuration.GetConnectionString("RedisHost");
|
|
}
|
|
|
|
// 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();
|
|
}
|
|
|
|
//app.UseRouting();
|
|
|
|
app.UseMvc();
|
|
|
|
|
|
MySqlContext ctx = new MySqlContext();
|
|
ctx.Database.EnsureCreated();
|
|
|
|
//app.UseEndpoints(endpoints =>
|
|
//{
|
|
// endpoints.MapGet("/", async context =>
|
|
// {
|
|
// await context.Response.WriteAsync("Hello World!");
|
|
// });
|
|
//});
|
|
}
|
|
}
|
|
}
|
|
|