forked from EdgeApp/edge-reports-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpm2.json
28 lines (28 loc) · 783 Bytes
/
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
{
"apps": [
{
"name": "reportsQuery",
"script": "lib/indexQuery.js",
"error_file": "/var/log/pm2/reportsQuery.error.log",
"out_file": "/var/log/pm2/reportsQuery.out.log"
},
{
"name": "reportsRates",
"script": "lib/indexRates.js",
"error_file": "/var/log/pm2/reportsRates.error.log",
"out_file": "/var/log/pm2/reportsRates.out.log"
},
{
"name": "reportsApi",
"script": "lib/indexApi.js",
"error_file": "/var/log/pm2/reportsApi.error.log",
"out_file": "/var/log/pm2/reportsApi.out.log"
},
{
"name": "reportsCache",
"script": "lib/indexCache.js",
"error_file": "/var/log/pm2/reportsCache.error.log",
"out_file": "/var/log/pm2/reportsCache.out.log"
}
]
}