yavsc/cli/appsettings.json

30 lines
784 B
JSON
Raw Normal View History

2018-03-09 04:25:52 +01:00
{
2018-07-26 17:10:57 +02:00
"ConnectionSettings" : {
"Site": {
"Authority": "oauth.server-example.com",
"Title": "[Site title]",
"Slogan": "[Site Slogan]",
"Banner": "/images/[bannerAsset]",
"HomeViewName": "Home",
"FavIcon": "/favicon.ico",
"Icon": "/images/[Site Icon]"
},
"ServerApiKey": {
"ClientId": "[OAuth2NativeClientId]",
"ClientSecret": "[OAuth2ClientSecret]"
}
2018-04-16 17:53:41 +02:00
},
"Logging": {
"IncludeScopes": true,
"LogLevel": {
"Default": "Debug",
"System": "Warning",
"Microsoft": "Warning"
}
2018-06-29 10:30:04 +02:00
},
"Data": {
"DefaultConnection": {
2018-07-26 17:10:57 +02:00
"ConnectionString": "[sbConStr]"
2018-06-29 10:30:04 +02:00
}
2018-03-09 04:25:52 +01:00
}
2018-06-29 10:30:04 +02:00
}