filter/pm2.json

17 lines
241 B
JSON
Raw Normal View History

2017-09-06 20:11:15 +02:00
{
"apps": [
{
"name": "filter",
"script": "./bin/www",
"watch": true,
"env": {
"NODE_ENV": "development"
},
"env_production": {
"NODE_ENV": "production"
},
"instances": 4,
"exec_mode": "cluster"
}
]
}