-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathappsettings.json
30 lines (30 loc) · 1.11 KB
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"ConnectionStrings": {
"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-LINQ2DB_MVC_Core_5;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Authentication": {
"Linq2db": {
"ProviderName": "SqlServer" // Default is SqlServer
},
"GoogleSSO": {
"ClientId": "", // --get this from https://console.developers.google.com/apis/credentials
"Secret": "" // --get this from https://console.developers.google.com/apis/credentials
},
"Facebook": {
"AppId": "", // --get this from https://developers.facebook.com/apps
"AppSecret": "" // --get this from https://developers.facebook.com/apps
},
"Microsoft": {
"ClientId": "", // -- get this from https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade
"ClientSecret": "" // -- get this from https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade
}
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}