-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
35 lines (34 loc) · 811 Bytes
/
config.js
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
var config = {
ProximiThings : {
port : 6253,
environment : 'development', //To display errors
service : 'ProxemicsInteraction',
servicePathRoot : '/'
},
mongodb : {
server: '127.0.0.1',
port : 27017,
database : 'proximicosas'
},
orion : {
server : '127.0.0.1',
port : 1026
},
mqtt : {
server: 'fiware.faxterol.com',
port: 1883,
options: {
keepalive: 0,
connectTimeout: 60 * 60 * 1000
}
},
interaction_processing : [
"DistanceProcessing",
"LocationProcessing",
"MovementDistanceProcessing",
"InfraredPerson",
"OrientationProcessing",
"InteractionPhaseProcessing"
]
};
module.exports = config;