mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05:00
move to standard appsettings.json
This commit is contained in:
@ -15,8 +15,11 @@ namespace Bit.Identity
|
||||
{
|
||||
public Startup(IHostingEnvironment env)
|
||||
{
|
||||
var builder = new ConfigurationBuilder()
|
||||
.AddSettingsConfiguration(env, "bitwarden-Identity");
|
||||
var builder = new ConfigurationBuilder();
|
||||
if(env.IsDevelopment())
|
||||
{
|
||||
builder.AddUserSecrets("bitwarden-Identity");
|
||||
}
|
||||
Configuration = builder.Build();
|
||||
Environment = env;
|
||||
}
|
||||
|
Reference in New Issue
Block a user