mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00: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