yavsc/src/cli/appsettings.json

36 lines
1.1 KiB
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
},
2019-01-08 15:00:58 +00:00
"ConnectionStrings": {
"Default":"[your default connection string]"
},
"gen_mvc" : {
"NameSpace": "Yavsc",
"AppBase": "../Yavsc",
"RelativePath": "../Yavsc/Controllers/Generated",
"DbContextFullName": "Yavsc.Models.ApplicationDbContext",
"ControllerName": "LiveFlowController",
"ModelFullName": "Yavsc.Models.Streaming.LiveFlow"
2018-03-09 04:25:52 +01:00
}
2018-06-29 10:30:04 +02:00
}