CodeLiturgy.Dashboard/CodeLiturgy.Views/appsettings.json

24 lines
574 B
JSON
Raw Normal View History

2022-09-19 05:50:15 +03:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
2022-10-27 20:13:02 +03:00
"mode": "no-docker",
2022-09-29 02:37:24 +03:00
"AllowedHosts": "*",
"ConnectionStringDocker": {
2022-10-27 20:13:02 +03:00
"MySQL": "server=db;user=blueuser;password=dXjw127124dJ;database=bluedb;"
2022-09-29 02:37:24 +03:00
},
"ConnectionStringNoDocker": {
2022-10-27 20:13:02 +03:00
"MySQL": "server=localhost;user=blueuser;password=dXjw127124dJ;database=bluedb;"
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
}