-
Notifications
You must be signed in to change notification settings - Fork 1
/
pm2.json
40 lines (40 loc) · 1.21 KB
/
pm2.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
{
"apps": [
{
"name": "pushServer",
"error_file": "/var/log/pm2/pushErrors.log",
"out_file": "/var/log/pm2/pushServer.log",
"script": "./lib/server/index.js"
},
{
"name": "balanceDaemon",
"error_file": "/var/log/pm2/balanceErrors.log",
"out_file": "/var/log/pm2/balanceDaemon.log",
"script": "./lib/daemons/balanceDaemon.js"
},
{
"name": "confirmationDaemon",
"error_file": "/var/log/pm2/confirmationErrors.log",
"out_file": "/var/log/pm2/confirmationDaemon.log",
"script": "./lib/daemons/confirmationDaemon.js"
},
{
"name": "priceChangeDaemon",
"error_file": "/var/log/pm2/priceChangeErrors.log",
"out_file": "/var/log/pm2/priceChangeDaemon.log",
"script": "./lib/daemons/priceChangeDaemon.js"
},
{
"name": "priceLevelDaemon",
"error_file": "/var/log/pm2/priceLevelErrors.log",
"out_file": "/var/log/pm2/priceLevelDaemon.log",
"script": "./lib/daemons/priceLevelDaemon.js"
},
{
"name": "publishDaemon",
"error_file": "/var/log/pm2/publishErrors.log",
"out_file": "/var/log/pm2/publishDaemon.log",
"script": "./lib/daemons/publishDaemon.js"
}
]
}