-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprocesses.json
More file actions
38 lines (36 loc) · 817 Bytes
/
processes.json
File metadata and controls
38 lines (36 loc) · 817 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
{
"apps": [
{
"name": "ewea",
"script": "./src/server.js",
"args": [],
"node_args": ["--optimize_for_size", "--max_old_space_size=460"],
"exec_mode": "cluster",
"instances": "max",
"instance_var": "INSTANCE_ID",
"watch": false,
"env": { "NODE_ENV": "production" }
},
{
"name": "ewea-worker",
"script": "./src/worker.js",
"args": [],
"node_args": [],
"exec_mode": "cluster",
"instances": 2,
"instance_var": "INSTANCE_ID",
"watch": false,
"env": { "NODE_ENV": "production" }
},
{
"name": "ewea-scheduler",
"script": "./src/scheduler.js",
"args": [],
"node_args": [],
"exec_mode": "cluster",
"instances": 1,
"instance_var": "INSTANCE_ID",
"watch": false,
"env": { "NODE_ENV": "production" }
}]
}