forked from JJConsulting/JJMasterData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
47 lines (47 loc) · 1.43 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"JJMasterData": {
"DataDictionaryTableName": "MasterData",
"ConnectionString": "data source=localhost;initial catalog=JJMasterData;integrated security=True;trust server certificate=True;encrypt=False;pooling=False",
"ReadProcedurePattern": "{tablename}Get",
"WriteProcedurePattern": "{tablename}Set",
"SecretKey": "ExampleSecretKey",
"CustomBootstrapPath": "/bootstrap.css",
"UseAdvancedModeAtExpressions": "True",
"ConnectionProvider": "SqlServer",
"LocalizationTableName": "tb_masterdata_resources",
"IsNetFramework": "False",
"AuditLogTableName": "tb_masterdata_auditlog",
"ExportationFolderPath": "D:\\source\\jjmasterdata\\example\\WebEntryPoint\\JJExportationFiles",
"LayoutPath": "_MasterDataLayout",
"ModalLayoutPath": "_MasterDataLayout.Modal",
"SupportNetFramework": "False",
"EnableBundleAndMinification": "True"
},
"AllowedHosts": "*",
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Database": "Debug"
},
"Console": {
"LogLevel": {
"Default": "Debug"
}
},
"Database": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "None"
},
"TableName": "tb_masterdata_log"
},
"File": {
"LogLevel": {
"Default": "Error",
"Microsoft.AspNetCore": "None"
},
"FileName": "Log/AppLog-yyyyMMdd.txt"
}
}
}