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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
| {
| "Logging": {
| "Console": {
| "IncludeScopes": true,
| "LogLevel": {
| "Default": "Information"
| }
| },
| "Debug": {
| "IncludeScopes": true,
| "LogLevel": {
| "Default": "Information"
| }
| },
| "WTM": {
| "LogLevel": {
| "Default": "Debug"
| }
| }
| },
| "Connections": [
| {
| "Key": "default",
| "Value": "Server=(localdb)\\mssqllocaldb;Database=cy_scdz_db;Trusted_Connection=True;",
| "DbContext": "DataContext",
| "DBType": "SqlServer" //DataBase, you can choose mysql,sqlserver,pgsql,sqlite,oracle
| }
| ],
| "CookiePre": "cy_scdz", //cookie prefix
| "IsQuickDebug": true, //is debug mode
| "EnableTenant": true, //是否启动多租户
| "CorsOptions": {
| "EnableAll": true
| },
| "ErrorHandler": "/_Framework/Error",
| "Languages":"zh,en",
| "BlazorMode": "server", // server or wasm
| "UIOptions": {
| "DataTable": {
| "RPP": 20, //default records per page for all datagrid
| "ShowPrint": true,
| "ShowFilter": true
| },
| "ComboBox": {
| "DefaultEnableSearch": true
| },
| "DateTime": {
| "DefaultReadonly": true
| },
| "SearchPanel": {
| "DefaultExpand": true
| }
| },
| "PageMode": "Tab", //display mode,Single or Tab
| "TabMode": "Simple", //Tab mode,Default or Simple
| "IsFilePublic": true,//Can download or view attachment file without login
| "FileUploadOptions": {
| "UploadLimit": 2097152000,
| "SaveFileMode": "Database", //上传文件的保存方式,可选Database,local,oss
| "Settings": {
| "local": [
| {
| "GroupName": "default",
| "GroupLocation": ""
| }
| ],
| "oss": [
| {
| "GroupName": "default",
| "GroupLocation": "wtmimg",
| "ServerUrl": "",
| "Key": "",
| "Secret": ""
| }
| ]
| }
| },
| "JwtOptions": {
| "Issuer": "http://localhost",
| "Audience": "http://localhost",
| "Expires": 3600,
| "SecurityKey": "superSecretKey@345",
| "RefreshTokenExpires": 86400,
| "LoginPath": "/_Framework/Redirect401"
| },
| "CookieOptions": {
| "Issuer": "http://localhost",
| "Audience": "http://localhost",
| "Domain":"",
| "Expires": 3600,
| "SlidingExpiration": true,
| "SecurityKey": "superSecretKey@345",
| "RefreshTokenExpires": 86400,
| "LoginPath": "/Login/Login"
| },
| "Domains": {
| "server": { //Blazor Server模式下页面调用接口的内网地址
| "Address": "http://localhost:12013"
| },
| "serverpub": { //Blazor Server模式下页面调用接口的外网地址,可为空,为空表示api和页面部署在同一地址下
| "Address": "http://localhost:12013"
| },
| "mainhost": {
| // "Address": "https://localhost:5001"
| },
| "github": {
| "Address": "https://api.github.com"
| }
| },
| "AppSettings": {
| "key1":"value1",
| "key2":"value2"
| }
| }
|
|