-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpm2.json
More file actions
41 lines (39 loc) · 680 Bytes
/
pm2.json
File metadata and controls
41 lines (39 loc) · 680 Bytes
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
{
"name": "test-task",
"cwd": "./",
"args": [
],
"script": "bin/www",
"log_date_format": "YYYY-MM-DD HH:mm Z",
"min_uptime": "10s",
"max_restarts": 15,
"watch": [
],
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"exec_interpreter": "node",
"exec_mode": "cluster",
"instances": 0,
"autorestart": true,
"vizion": false,
"env": {
"NODE_ENV": "development",
"PGUSER":"postgres",
"PGDATABASE":"sample",
"PGPASSWORD":"",
"PGHOST":"localhost",
"PGPORT":5432,
"DATABASE_URL":""
},
"env_production": {
"NODE_ENV": "production",
"PGUSER":"",
"PGDATABASE":"",
"PGPASSWORD":"",
"PGHOST":"",
"PGPORT":"",
"DATABASE_URL":""
}
}