-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
40 lines (40 loc) · 1.02 KB
/
config.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
{
"oldcollections": {
"users": {
"jsonImport": "../projectboard/output/employees.json",
"unique": ["id"],
"indices": ["first", "last", "keywords", "summary"]
},
"projects": {
"jsonImport": "../projectboard/output/projects.json",
"unique": ["id"],
"indices": ["name", "keywords", "summary"]
}
},
"throttledSaves": false,
"collections": {
"users": {
"jsonImport": "../projectboard/output/employees.json",
"unique": ["id"],
"indices": ["pcm", "keywords"]
},
"projects": {
"jsonImport": "../projectboard/output/projects.json",
"unique": ["id"],
"indices": ["name"]
},
"publications": {
"jsonImport": "../projectboard/output/newest_publications.json",
"unique": ["id"],
"indices": ["name"]
},
"customers": {
"jsonImport": "../projectboard/output/customers.json",
"indices": ["id"]
},
"sales": {
"jsonImport": "../projectboard/output/sales.json",
"indices": ["id"]
}
}
}