Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit f9f966e

Browse files
committed
default settings
1 parent 98f752b commit f9f966e

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,5 @@ There are several ways we can help you out.
5050
# What comes next?
5151

5252
Admin panel to manage IdentityServer4 configuration.
53+
Translation
54+
Code coverage

src/Backend/Jp.Infra.CrossCutting.IdentityServer/Configuration/SigninCredentialExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static class SigninCredentialExtension
3030
public static IIdentityServerBuilder AddSigninCredentialFromConfig(
3131
this IIdentityServerBuilder builder, IConfigurationSection options, ILogger logger, IHostingEnvironment env)
3232
{
33-
string keyType = System.Environment.GetEnvironmentVariable("CERTIFICATE_TYPE") ?? options.GetSection("Type").Value;
33+
string keyType = System.Environment.GetEnvironmentVariable("CERTIFICATE_TYPE");
3434
logger.LogInformation($"SigninCredentialExtension keyType is {keyType}");
3535

3636
switch (keyType)

src/Backend/Jp.UserManagement/appSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ConnectionStrings": {
33
// localdb
4-
"SSOConnection": "Server=(localdb)\\mssqllocaldb;Database=JpProject;Trusted_Connection=True;MultipleActiveResultSets=true",
4+
"SSOConnection": "Server=(localdb)\\mssqllocaldb;Database=JpProject;Trusted_Connection=True;MultipleActiveResultSets=true",
55
// Sql Server connection
66
// "SSOConnection": "Server=.;Initial Catalog=JpProject;Persist Security Info=False;User ID=sa;Password=@Password1;MultipleActiveResultSets=False;Connection Timeout=30;"
77
// MySql connection

0 commit comments

Comments
 (0)