-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpm2.json
More file actions
19 lines (19 loc) · 865 Bytes
/
pm2.json
File metadata and controls
19 lines (19 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"apps": [{
"name": "workflow.0",
"max_memory_restart": "1024M",
"log_date_format": "YYYY-MM-DD HH:mm:ss SSS",
"script": "/srv/workflow/bundle/main.js",
"out_file": "/srv/workflow/log/app.log",
"error_file": "/srv/workflow/log/err.log",
"port": "6100",
"env": {
"MONGO_URL": "mongodb://localhost:27017/steedos",
"MONGO_OPLOG_URL": "mongodb://localhost:27017/local",
"MULTIPLE_INSTANCES_COLLECTION_NAME": "workflow_instances",
"ROOT_URL": "https://cn.steedos.com/workflow",
"DDP_DEFAULT_CONNECTION_URL": "https://cn.steedos.com/workflow",
"PORT": "6100"
}
}]
}