-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.corvarc.json
51 lines (51 loc) · 967 Bytes
/
.corvarc.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
{
"version": 4,
"lambda": {
"type": "stream",
"handler": "lambda_function.lambda_handler",
"env": [
"LOG_LEVEL=DEBUG"
],
"port": 9001
},
"infra": {
"stopContainers": false,
"restartContainers": false,
"redis": {
"image": "redis:latest",
"port": 6380
},
"mongo": {
"image": "mongo:latest",
"port": 27018
},
"apiLite": {
"image": "corva/corva-api-lite:latest",
"mode": "data",
"port": 3008
}
},
"source": {
"import": true,
"dir": "./test-sources",
"database": "corva",
"collection": "corva#wits",
"limits": {}
},
"event": {
"assetId": 123456,
"companyId": 1,
"sourceType": "drilling",
"appKey": "corva.witsml-source",
"options": {}
},
"export": {
"enabled": true,
"format": "json",
"collections": [
"big-data-energy#hook_load_plus_wob"
],
"fields": {}
},
"debugOutput": "file"
}