chain-client/start.json
2023-04-06 16:48:03 +08:00

23 lines
503 B
JSON

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