-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample-configuration.json
More file actions
37 lines (37 loc) · 960 Bytes
/
example-configuration.json
File metadata and controls
37 lines (37 loc) · 960 Bytes
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
{
"mongo": {
"connectionURI": "localhost:30000,localhost:30001,localhost:30002"
},
"watches": [
{
"trackCollection": "live.user",
"trackFields": ["username", "gender", "invalid"],
"targetCollection": "live.comment",
"targetNormalizedField": "meta",
"triggerReference": "user",
"behaviourSettings": {
"cascadeDelete": false
}
},
{
"trackCollection": "live.user",
"trackFields": ["loginCount"],
"targetCollection": "live.comment",
"targetNormalizedField": "statistics",
"triggerReference": "user",
"behaviourSettings": {
"cascadeDelete": false
}
},
{
"trackCollection": "live.user",
"trackFields": ["name", "username"],
"targetCollection": "live.answer",
"targetNormalizedField": "meta",
"triggerReference": "user",
"behaviourSettings": {
"cascadeDelete": false
}
}
]
}