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