birbmap/Birdmap.API/appsettings.json

31 lines
825 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",
2020-10-31 15:57:19 +01:00
"LocalDbConnectionString": "Data Source=DESKTOP-A6JQ6B5\\SQLEXPRESS;Initial Catalog=Birdmap;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
"Defaults": {
"Services": {
"Local Database": "https://localhost:44331/health",
"KMLabz Services": "https://birb.k8s.kmlabz.com/devices"
},
"Users": [
{
"Name": "admin",
"Password": "pass",
"Role": "Admin"
},
{
"Name": "user",
"Password": "pass",
"Role": "User"
}
]
}
2020-10-21 11:05:17 +02:00
}