-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.akala.json
81 lines (81 loc) · 2.53 KB
/
.akala.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"plugins": [
"@akala/commands/akala",
"@akala/config/akala",
"@akala/pm/akala"
],
"pm": {
"containers": {
"pm": {
"commandable": true,
"stateless": false,
"path": "/home/nicolas/dev/domojs/node_modules/@akala/pm/commands.json"
},
"@domojs/rfx": {
"path": "/home/nicolas/dev/domojs/packages/rfx/commands.json",
"commandable": true
},
"@domojs/devices": {
"path": "/home/nicolas/dev/domojs/packages/devices/device-commands.json",
"commandable": true
},
"@domojs/devicetype": {
"path": "/home/nicolas/dev/domojs/packages/devices/devicetype-commands.json",
"commandable": true
},
"weather": {
"path": "/home/nicolas/dev/domojs/packages/weather/commands.json",
"commandable": true
},
"zigate": {
"path": "/home/nicolas/dev/domojs/packages/zigate/commands.json",
"commandable": true
}
},
"mapping": {
"pm": {
"cwd": "/home/nicolas/dev/domojs",
"container": "pm",
"connect": {
"jsonrpc+unix:///home/nicolas/dev/domojs/pm.sock": {}
}
},
"@domojs/devicetype": {
"container": "@domojs/devicetype",
"autostart": true
}
},
"plugins": []
},
"commands": {
"sdk": "./node_modules/@akala/commands/commands.json"
},
"@domojs/devicetype": {
"store": {
"provider": "file",
"providerOptions": {
"rootDbName": "./db/devices"
},
"models": {
"DeviceInit": {
"members": {
"name": {
"isKey": true,
"type": {
"type": "string",
"length": 250
},
"generator": "business"
},
"body": {
"isKey": false,
"type": {
"type": "string"
}
}
}
}
}
}
}
}