birbmap/Birdmap/appsettings.json

32 lines
538 B
JSON
Raw Normal View History

2020-10-21 11:05:17 +02:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2020-10-21 17:04:54 +02:00
"AllowedHosts": "*",
"Secret": "7vj.3KW.hYE!}4u6",
"LocalDbConnectionString": null,
"Default": {
"Users": [
{
"Username": "user",
"Password": "pass",
"Role": "User"
},
{
"Username": "admin",
"Password": "pass",
"Role": "Admin"
}
],
"Endpoints": [
"",
"",
""
]
2020-10-21 17:04:54 +02:00
}
2020-10-21 11:05:17 +02:00
}