This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartup.cs
66 lines (59 loc) · 2.21 KB
/
Startup.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using FacileBudget.Models.Options;
using FacileBudget.Models.Services.Application;
using FacileBudget.Models.Services.Infrastructure;
using FacileBudget.Models.Validators;
using FluentValidation.AspNetCore;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace FacileBudget
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public void ConfigureServices(IServiceCollection services)
{
services.AddResponseCaching();
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_3_0)
.AddFluentValidation(options => {
options.RegisterValidatorsFromAssemblyContaining<SpeseCreateValidator>();
})
#if DEBUG
.AddRazorRuntimeCompilation()
#endif
;
// Database
services.AddTransient<ISpeseService, AdoNetSpeseService>();
services.AddTransient<IDatabaseAccessor, SqliteDatabaseAccessor>();
// Options
services.Configure<SpeseOptions>(Configuration.GetSection("Spese"));
services.Configure<ConnectionStringsOptions>(Configuration.GetSection("ConnectionStrings"));
services.Configure<KestrelServerOptions>(Configuration.GetSection("Kestrel"));
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsEnvironment("Development"))
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
}
app.UseStaticFiles();
app.UseRouting();
app.UseResponseCaching();
app.UseEndpoints(routeBuilder => {
routeBuilder.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
});
}
}
}