mirror of
https://github.com/bitwarden/server.git
synced 2024-12-03 14:03:33 +01:00
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
using System;
|
|
using Bit.Icons.Services;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Icons
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
// Options
|
|
services.AddOptions();
|
|
|
|
// Settings
|
|
var iconsSettings = new IconsSettings();
|
|
ConfigurationBinder.Bind(Configuration.GetSection("IconsSettings"), iconsSettings);
|
|
services.AddSingleton(s => iconsSettings);
|
|
|
|
// Cache
|
|
services.AddMemoryCache(options =>
|
|
{
|
|
options.SizeLimit = iconsSettings.CacheSizeLimit;
|
|
});
|
|
|
|
// Services
|
|
services.AddSingleton<IDomainMappingService, DomainMappingService>();
|
|
|
|
// Mvc
|
|
services.AddMvc();
|
|
}
|
|
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
|
|
{
|
|
if(env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
|
|
app.UseMvc();
|
|
}
|
|
}
|
|
}
|