forked from GetStream/Winds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.json
More file actions
34 lines (34 loc) · 990 Bytes
/
process.json
File metadata and controls
34 lines (34 loc) · 990 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
{
"apps" : [{
"name" : "app",
"script" : "app.js",
"watch" : true,
"log_date_format" : "YYYY-MM-DD HH:mm Z",
"env" : {
"NODE_ENV": "production",
"PORT": 80,
}
},
{
"name" : "feeds",
"script" : "scrape_feeds.js",
"args" : "-l",
"watch" : true,
"log_date_format" : "YYYY-MM-DD HH:mm Z",
"autorestart" : false,
"max_restarts" : 1,
"instances" : 1,
"cron_restart" : "*/5 * * * *",
},
{
"name" : "favicons",
"script" : "scrape_favicons.js",
"args" : "-l",
"watch" : true,
"log_date_format" : "YYYY-MM-DD HH:mm Z",
"autorestart" : false,
"max_restarts" : 1,
"instances" : 1,
"cron_restart" : "*/5 * * * *",
}]
}