spider/start.json
2019-05-28 17:44:51 +08:00

27 lines
517 B
JSON

{
"apps": [
{
"name": "spider",
"script": "lib/app.js",
"cwd": "/data/apps/movie_spider",
"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"
}
}
]
}