-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json.txt
More file actions
39 lines (35 loc) · 1.2 KB
/
appsettings.json.txt
File metadata and controls
39 lines (35 loc) · 1.2 KB
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
31
32
33
34
35
36
37
38
39
{
"Data": {
"Northwind": {
"ConnectionString": "Server=bitsql.wctc.edu;Database=Northwind_##_XXX;User ID=<User Name>;Password=<Student ID>"
},
"NWIdentity": {
"ConnectionString": "Server=bitsql.wctc.edu;Database=AppIdentity_##_XXX;User ID=<User Name>;Password=<Student ID>"
},
"SendGrid": {
"SendGridUser": "<Send Grid User Name>",
"SendGridKey": "<Send Grid API Key>"
},
"Logging": {
"LogLevel": { // All providers, LogLevel applies to all the enabled providers.
"Default": "Error", // Default logging, Error and higher.
"Microsoft": "Warning" // All Microsoft* categories, Warning and higher.
},
"Debug": { // Debug provider.
"LogLevel": {
"Default": "Information", // Overrides preceding LogLevel:Default setting.
"Microsoft.Hosting": "Trace " // Debug:Microsoft.Hosting category.
},
"EventSource": { // EventSource provider
"LogLevel": {
"Default": "Warning" // All categories of EventSource provider.
}
}
}
},
"_comment": {
"##": "last 2 digits of CRN",
"XXX": "your initials"
}
}
}