-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
37 lines (37 loc) · 906 Bytes
/
config.js
File metadata and controls
37 lines (37 loc) · 906 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
module.exports = [
/* {
name: 'Vtiger 8',
mongodb: {
uri: 'mongodb://localhost:27017',
database: 'vtiger',
collections: [
{ name: 'Contacts' },
{ name: 'Assets', unique: 'id' }
]
},
postman: {
collection: 'collections/Vtiger 8.postman_collection.json',
result: '.result',
folder: 'JSON'
}
}, */
{
name: 'SWAPI',
mongodb: {
uri: 'mongodb://localhost:27017',
database: 'swapi',
collections: [
{ name: 'Films', unique: 'episode_id' },
{ name: 'People', unique: 'name' },
{ name: 'Planets', unique: 'name' },
{ name: 'Species', unique: 'name' },
{ name: 'Starships', unique: 'name' },
{ name: 'Vehicles', unique: 'name' }
]
},
postman: {
collection: 'collections/SWAPI.postman_collection.json',
result: '.results'
}
}
]