-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathprocess.json
More file actions
32 lines (32 loc) · 829 Bytes
/
process.json
File metadata and controls
32 lines (32 loc) · 829 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
{
"apps": [
{
"name": "Hilary",
"script": "app.js",
"watch": ["packages", "config.js", "app.js"],
"instances": 1,
"exec_mode": "fork",
"ignore_watch": ["node_modules", "test", ".git", "files", "*.log", "tmp"]
},
{
"name": "Ethercalc",
"script": "app.js",
"cwd": "ethercalc",
"watch": ["*.js"],
"args": "--restart-delay=3000",
"instances": 1,
"exec_mode": "fork",
"ignore_watch": ["node_modules", ".git", "static", "*.log"]
},
{
"name": "Etherpad",
"script": "node_modules/ep_etherpad-lite/node/server.js",
"cwd": "etherpad",
"watch": ["*.js"],
"args": "--restart-delay=3000",
"instances": 1,
"exec_mode": "fork",
"ignore_watch": ["node_modules", ".git", "*.log"]
}
]
}