flow_chain/start.json
2022-11-22 15:57:19 +08:00

28 lines
546 B
JSON

{
"apps": [
{
"name": "flow_chain",
"script": "npm",
"args": "run prod:api",
"cwd": "/var/data/apps/flow_chain",
"max_memory_restart": "1024M",
"log_date_format" : "YYYY-MM-DD HH:mm Z",
"watch": true,
"ignore_watch": [
"node_modules",
"logs",
"fixtures",
"tasks"
],
"instances": 1,
"exec_mode": "cluster",
"env": {
"NODE_ENV": "production"
},
"env_production": {
"NODE_ENV": "production"
}
}
]
}