-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpm2_mixer.json
112 lines (111 loc) · 2.46 KB
/
pm2_mixer.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"apps": [
{
"name": "MixerControl",
"script": "npm",
"args": [
"start"
],
"watch": true,
"node_args": "",
"merge_logs": true,
"cwd": "MixerControl/MixerControl-app",
"exec_mode": "fork",
"env": {
"NODE_ENV": "testing",
"TDM_MIXER_CONFIG": "private_config_testing"
},
"env_production": {
"NODE_ENV": "production",
"TDM_MIXER_CONFIG": "private_config_production"
},
"env_dev": {
"NODE_ENV": "development"
},
"instances": 1
},
{
"name": "PumpControl",
"script": "./PumpControl/PumpControl",
"args": [
"-c","/home/pi/pumpcontrol.settings.conf"
],
"restart_delay": 10000,
"max_restarts": 6,
"watch": false,
"merge_logs": true,
"exec_interpreter": "none",
"exec_mode": "fork",
"cwd": "PumpControl",
"env": {
},
"env_dev": {
},
"env_production":{
},
"instances": 1
},
{
"name": "LicenseManager",
"script": "./LicenseManager/LicenseManager",
"args": [
""
],
"watch": false,
"merge_logs": true,
"restart_delay": 10000,
"max_restarts": 6,
"exec_interpreter": "none",
"exec_mode": "fork",
"cwd": "LicenseManager",
"env": {
},
"env_dev": {
},
"env_production":{
},
"instances": 1
},
{
"name": "PaymentService",
"script": "/usr/bin/mvn",
"args": [
"jetty:run"
],
"restart_delay": 10000,
"max_restarts": 6,
"watch": false,
"merge_logs": true,
"exec_interpreter": "none",
"exec_mode": "fork",
"cwd": "PaymentService",
"env": {
},
"env_dev": {
},
"env_production":{
},
"instances": 1
},
{
"name": "Illumination",
"script": "./MixerControl/Illumination/main.py",
"args": [
],
"restart_delay": 10000,
"max_restarts": 6,
"watch": false,
"merge_logs": true,
"exec_interpreter": "none",
"exec_mode": "fork",
"cwd": "MixerControl/Illumination",
"env": {
},
"env_dev": {
},
"env_production": {
},
"instances": 1
}
]
}