|
@ -3,10 +3,13 @@ using System.Collections.Generic; |
|
|
using System.Linq; |
|
|
using System.Linq; |
|
|
using System.Threading.Tasks; |
|
|
using System.Threading.Tasks; |
|
|
using CoviDok.Data.MySQL; |
|
|
using CoviDok.Data.MySQL; |
|
|
|
|
|
using CoviDok.Data.SessionProviders; |
|
|
|
|
|
using CoviDok.Data.StorageProviders; |
|
|
using Microsoft.AspNetCore.Builder; |
|
|
using Microsoft.AspNetCore.Builder; |
|
|
using Microsoft.AspNetCore.Hosting; |
|
|
using Microsoft.AspNetCore.Hosting; |
|
|
using Microsoft.AspNetCore.Http; |
|
|
using Microsoft.AspNetCore.Http; |
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
|
|
using Microsoft.Extensions.Configuration; |
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
using Microsoft.Extensions.Hosting; |
|
|
using Microsoft.Extensions.Hosting; |
|
|
|
|
|
|
|
@ -16,9 +19,16 @@ namespace CoviDok |
|
|
{ |
|
|
{ |
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
// 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
|
|
|
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
|
|
|
public void ConfigureServices(IServiceCollection services) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void ConfigureServices(IServiceCollection services, IConfiguration configuration) |
|
|
{ |
|
|
{ |
|
|
services.AddMvc(options => options.EnableEndpointRouting = false).SetCompatibilityVersion(CompatibilityVersion.Version_3_0); |
|
|
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.
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
@ -33,6 +43,7 @@ namespace CoviDok |
|
|
|
|
|
|
|
|
app.UseMvc(); |
|
|
app.UseMvc(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MySqlContext ctx = new MySqlContext(); |
|
|
MySqlContext ctx = new MySqlContext(); |
|
|
ctx.Database.EnsureCreated(); |
|
|
ctx.Database.EnsureCreated(); |
|
|
|
|
|
|
|
|