CodeLiturgy.Dashboard/CodeLiturgy.Views/appsettings.json

29 lines
726 B
JSON
Raw Permalink Normal View History

2022-09-19 05:50:15 +03:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
2022-11-18 03:15:53 +03:00
"mode": "local",
2022-09-29 02:37:24 +03:00
"AllowedHosts": "*",
2022-11-18 03:15:53 +03:00
"ConnectionString": {
"local": {
"db": "Server=127.0.0.1;User Id=clbdlocal;Password=C79J#MV))!YAiy/SzkCf;Database=cldblocal;"
},
"dev": {
"db": "Server=127.0.0.1;User Id=clbdlocal;Password=C79J#MV))!YAiy/SzkCf;Database=cldblocal;"
},
"staging": {
"db": "Server=127.0.0.1;User Id=clbdlocal;Password=C79J#MV))!YAiy/SzkCf;Database=cldblocal;"
}
2022-09-29 02:37:24 +03:00
},
"AuthSettings": {
"SecretKey": "iJWHDmHLpUA283sqsfhqGbMRdRj1PVkH"
},
"JwtIssuerOptions": {
"Issuer": "SomeIssuer",
"Audience": "http://localhost:5000"
}
2022-09-19 05:50:15 +03:00
}