-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
appsettings.example.json
131 lines (98 loc) · 2.98 KB
/
appsettings.example.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"Files": {
"UsePolling": false,
"PollingDelay": 60,
"RetryCountOnEmptyDirlist": 0,
"RetryCountOnSrcFileOpenError": 5,
"FSOperationTimeout": 3600,
"DirListOperationTimeout": 3600,
"FileBufferWriteTimeout": 3600,
"FileBufferReadTimeout": 3600,
"UseIdlePriority": false,
"UseBackgroundMode": false,
"Affinity": [ 0 ],
"DirlistReadDelayMs": 0,
"FileWriteDelayMs": 0,
"ReadBufferKB": 1024,
"WriteBufferKB": 1024,
"BufferReadDelayMs": 0,
"BufferWriteDelayMs": 0,
"ShowErrorAlerts": true,
"LogInitialScan": false,
"LogToFile": false,
"AddTimestampToNormalLogEntries": true,
"SrcPath": "C:\\YourPath\\YourProject\\",
"SrcPathMinFreeSpace": 100000000,
"MaxFileSizeMB": 2048,
"CaseSensitiveFilenames": null,
"DoNotCompareFileContent": false,
"DoNotCompareFileDate": false,
"DoNotCompareFileSize": false,
"CacheDestAndHistoryFolders": false,
"PersistentCacheDestAndHistoryFolders": false,
"CachePath": ".\\Cache\\",
"EnableMirror": true,
"Bidirectional": false,
"MirrorIgnoreSrcDeletions": false,
"MirrorIgnoreDestDeletions": false,
"MirrorDestPath": "C:\\YourPath\\YourProject-Backup\\",
"MirrorDestPathMinFreeSpace": 100000000,
"EnableHistory": false,
"HistoryDestPath": "C:\\YourPath\\YourProject-History\\",
"HistoryDestPathMinFreeSpace": 100000000,
"HistoryVersionFormat": "timestamp_before_ext",
"___VersionFormatOptions": "prefix_timestamp | timestamp_before_ext | sufix_timestamp",
"HistoryVersionSeparator": ".",
"MirrorWatchedExtensions": [
"*"
],
"MirrorWatchedFileNames": [
],
"MirrorExcludedExtensions": [
"*~",
"tmp"
],
"MirrorIgnorePathsStartingWith": [
"\\Temp\\"
],
"MirrorIgnorePathsContaining": [
"\\~$",
".tmp\\",
"\\db.lock",
"\\Logs\\",
"\\node_modules\\",
"\\wwwroot\\dist\\"
],
"MirrorIgnorePathsEndingWith": [
],
"HistoryWatchedExtensions": [
"txt"
],
"HistoryWatchedFileNames": [
"ZMover.dat"
],
"HistoryExcludedExtensions": [
"*~",
"bak",
"tmp"
],
"HistoryIgnorePathsStartingWith": [
"\\Temp\\"
],
"HistoryIgnorePathsContaining": [
"\\~$",
".tmp\\",
".localhistory\\",
".vshistory\\",
"\\bin\\",
"\\obj\\",
"\\db.lock",
"\\sqlite3\\",
"\\Logs\\",
"\\node_modules\\",
"\\wwwroot\\dist\\"
],
"HistoryIgnorePathsEndingWith": [
]
}
}