-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathappsettings.json
More file actions
74 lines (69 loc) · 2.23 KB
/
appsettings.json
File metadata and controls
74 lines (69 loc) · 2.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"DataSettings": {
"DbPlatform": "ef",
"EFProvider": "mssql",
"MSSQLConnectionString": "Server=(localdb)\\mssqllocaldb;Database=cloudscribe;Trusted_Connection=True;MultipleActiveResultSets=true",
"MySqlConnectionString": "Server=localhost;Database=yourdbname;Uid=yourdbuser;Pwd=yourdbpassword;Charset=utf8;",
"PostgreSqlConnectionString": "Server=yourserver;Port=5432;User Id=youruser;Password=yourpassword;Database=yourdbname;",
"SqliteConnectionString": "Data Source=appdata.db;"
},
"AppSettings": {
"UseSsl": true
},
"MultiTenantOptions": {
"Mode": "FolderName",
"UseRelatedSitesMode": "false",
"RelatedSiteId": "00000000-0000-0000-0000-000000000000"
},
// to use font-awesome instead of the default glyphicons just remove the -option from the name
"UIOptions-option": {
"AllowDeleteChildSites": "false",
"IconEmail": "fa fa-envelope-o",
"IconUsername": "fa fa-arrow-circle-o-right",
"IconPassword": "fa fa-key",
"IconFirstName": "fa fa-user-o",
"IconLastName": "fa fa-user-o",
"IconDateOfBirth": "fa fa-calendar"
},
"GoogleAnalyticsOptions": {
"TrackUserId": "true",
"UserIdDimensionIndex": "1",
"RegisteredUserDimensionIndex": "2",
"LoginRegisterSourceDimenstionIndex": "3",
"RegisterSuccessMetricIndex": "1",
"RegisterFailMetricIndex": "2",
"RegisterSubmitMetricIndex": "3",
"LoginSuccessMetricIndex": "4",
"LoginFailMetricIndex": "5",
"LoginSubmitMetricIndex": "6",
"LoginRegisterEventCategory": "Login and Registration",
"LoginSuccessEventAction": "Login Success",
"LoginFailEventAction": "Login Fail",
"LoginSubmitEventAction": "Login Submit",
"RegisterSuccessEventAction": "Register Success",
"RegisterFailEventAction": "Register Fail",
"RegisterSubmitEventAction": "Register Submit"
},
"DbLoggerConfig": {
"DevLogLevel": "Debug",
"ProductionLogLevel": "Warning",
"ExcludedNamesSpaces": [
"SaasKit.Multitenancy"
],
"BelowWarningExcludedNamesSpaces": [
]
},
"Logging": {
"IncludeScopes": false,
"Debug": {
"LogLevel": {
"Default": "Warning"
}
},
"Console": {
"LogLevel": {
"Default": "Warning"
}
}
}
}