-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocfile.json
29 lines (29 loc) · 932 Bytes
/
procfile.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
29
{
"apps": [ {
"env": {
"PORT": 3255
},
"exec_mode": "cluster",
"instance_var": "SYNDICATION_API_ID",
"instances": 8,
"interpreter_args": "--harmony --preserve-symlinks --trace-deprecation --trace-warnings --zero-fill-buffers",
"name": "syndication-web",
"script": "./server/init.js"
}, {
"env": {},
"exec_mode": "cluster",
"instance_var": "SYNDICATION_WORKER_SYNC_ID",
"instances": 2,
"interpreter_args": "--harmony --preserve-symlinks --trace-deprecation --trace-warnings --zero-fill-buffers",
"name": "syndication-sync",
"script": "./worker/sync/index.js"
}, {
"env": {},
"exec_mode": "cluster",
"instance_var": "SYNDICATION_WORKER_CRONS_ID",
"instances": 1,
"interpreter_args": "--harmony --preserve-symlinks --trace-deprecation --trace-warnings --zero-fill-buffers",
"name": "crons",
"script": "./worker/crons/index.js"
} ]
}