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
| {
| "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
|
|
| "DOCS": {
| "DataBase": {
| "DbType": "PostgreSql", //PostgreSql/SQLite
| "Factory": {
| "EnableCache": true,
| "CacheTime": 10
| },
| "PostgreSql": {
| "ConnectString": "PORT=5432;DATABASE=yw_docs;HOST=localhost;PASSWORD=123456;USER ID=postgres;"
| },
| "SQLite": {
| "ConnectString": "Data Source=yw_docs.db;"
| }
| },
| "DataFolder": "DOCS",
| "CAL": {
| "CALType": "HttpClient", //HttpClient/LocalClient
| "HttpClient": {
| "HttpUrl": ""
| },
| "LocalClient": {
| }
| }
| }
|
|
| }
|
|