-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmac.config.js
More file actions
56 lines (56 loc) · 1.83 KB
/
mac.config.js
File metadata and controls
56 lines (56 loc) · 1.83 KB
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
module.exports = {
apps : [
{
name : 'broker',
script : '/opt/homebrew/sbin/mosquitto',
args : '-c /opt/homebrew/etc/mosquitto/mosquitto.conf',
interpreter : 'none',
wait_ready : true,
autorestart : false
},
{
name : 'aop',
cwd : './aop',
script : 'npm',
args : 'start',
interpreter : 'none',
wait_ready : true,
autorestart : false,
env : {
PORT : 8080,
BROKER : 'mqtt://localhost',
SCREENWIDTH : 1440,
USER_DATA_PATH : '/Users/joel/Coding/GingaDistrib/user-files'
}
},
{
name : 'apps',
cwd : './apps',
script : 'npm',
args : 'start',
interpreter : 'none',
wait_ready : true,
autorestart : false,
env : {
PORT : 8081,
BROKER : 'mqtt://localhost',
USER_DATA_PATH : '/Users/joel/Coding/GingaDistrib/user-files'
}
},
{
name : 'tv3ws',
cwd : './ccws',
script : 'npm',
args : 'start',
interpreter : 'none',
wait_ready : true,
env : {
PORT : 44642,
BROKER : 'mqtt://localhost',
SERVER_URL : 'localhost',
USER_DATA_FILE : '/Users/joel/Coding/GingaDistrib/user-files/userData.json',
USER_THUMBS : '/Users/joel/Coding/GingaDistrib/user-files/thumbs'
}
}
]
}