forked from permacommons/lib.reviews
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.json
More file actions
28 lines (28 loc) · 731 Bytes
/
process.json
File metadata and controls
28 lines (28 loc) · 731 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
{
"apps": [{
"name": "app-development",
"script": "./bin/www.js",
"exec_mode": "cluster",
"instances": 0,
"env": {
"NODE_ENV": "development",
"DEBUG": "libreviews:*",
"DEBUG_COLORS": "true"
},
"min_uptime": "1h",
"watch": true,
"ignore_watch": ["static/**", "frontend/**", "rethinkdb_data*", "locales/*.json", ".git", "views/**"]
},
{
"name": "app-production",
"script": "./bin/www.js",
"exec_mode": "cluster",
"instances": 0,
"env": {
"NODE_ENV": "production",
"DEBUG": "libreviews:*"
},
"watch": false,
"min_uptime": "1m"
}]
}