-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocesses.json
52 lines (52 loc) · 1.35 KB
/
processes.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"apps" : [{
"name" : "koa-app-server",
"script" : "index.js",
"args" : [],
"watch" : true,
"autorestart" : true,
"node_args" : "",
"merge_logs" : false,
"cwd" : "./app",
"env": {
"NODE_ENV": "development",
"PORT": "3003",
"MONGO_HOST": "localhost",
"MONGO_PORT": "27017",
"DEBUG": "*:*"
},
"ignore_watch": ["node_modules", "log", "assets", "pids", "\.git\/", "test", "package.json"],
"watch_options": {
"usePolling": false
},
"exec_mode": "fork_mode",
"error_file": "./log/error.log",
"out_file": "./log/output.log",
"pid_file": "./pids/app.pid"
},
{
"name" : "koa-mock-server",
"script" : "index.js",
"args" : [],
"watch" : true,
"autorestart" : true,
"node_args" : "",
"merge_logs" : false,
"cwd" : "./mock",
"env": {
"NODE_ENV": "development",
"PORT": "3333",
"MONGO_HOST": "localhost",
"MONGO_PORT": "27017",
"DEBUG": "*:*"
},
"ignore_watch": ["node_modules", "log", "assets", "pids", "\.git\/", "test", "package.json"],
"watch_options": {
"usePolling": false
},
"exec_mode": "fork_mode",
"error_file": "./log/error.log",
"out_file": "./log/output.log",
"pid_file": "./pids/mock.pid"
}]
}