-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpm2.json
More file actions
44 lines (44 loc) · 1.09 KB
/
pm2.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"apps": [
{
"name": "ttel-pro",
"script": "bin/www",
"log_date_format": "YYYY-MM-DD HH:mm Z",
"error_file": "logs/pro/error-error.log",
"out_file": "logs/pro/node-app.stdout.log",
"pid_file": "pids/pro/node-geo-api.pid",
"instances": 1,
"min_uptime": "200s",
"max_restarts": 10,
"max_memory_restart": "550M",
"cron_restart": "1 0 * * *",
"watch": false,
"merge_logs": true,
"exec_mode":"fork",
"env": {
"NODE_ENV": "pro"
},
"vizion": false
},
{
"name": "ttel-dev",
"script": "bin/www",
"log_date_format": "YYYY-MM-DD HH:mm Z",
"error_file": "logs/dev/error-error.log",
"out_file": "logs/dev/node-app.stdout.log",
"pid_file": "pids/dev/node-geo-api.pid",
"instances": 1,
"min_uptime": "200s",
"max_restarts": 10,
"max_memory_restart": "550M",
"cron_restart": "1 0 * * *",
"watch": false,
"merge_logs": true,
"exec_mode":"fork",
"env": {
"NODE_ENV": "dev"
},
"vizion": false
}
]
}