usefulfiles/pm2/process.json

137 lines
3.0 KiB
JSON
Raw Normal View History

2016-07-04 10:21:24 +00:00
{
2016-07-04 10:24:15 +00:00
"apps": [
2016-07-04 10:21:24 +00:00
// First application
{
"name": "SilvrPipes",
"script": "pipes-server.js",
"cwd": "/home/martind2000/dev/Rinser",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
2016-07-04 10:24:15 +00:00
},
2016-07-04 10:21:24 +00:00
{
"name": "Silvrtree",
"script": "web-server.js",
"cwd": "/home/martind2000/dev/silvrgit",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
},
2016-07-04 10:24:15 +00:00
2016-07-04 10:21:24 +00:00
{
"name": "Lot",
"script": "lot.js",
"cwd": "/home/martind2000/dev/lot",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
},
{
"name": "NCI",
"script": "web-server.js",
"cwd": "/home/martind2000/dev/nci-quick-setup/node_modules/.bin/nci",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
},
{
"name": "Keeper",
"script": "keeper-server.js",
"cwd": "/home/martind2000/dev/keeper",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
},
{
"name": "SilvrAPI",
"script": "newapp.js",
"cwd": "/home/martind2000/dev/silvrapi",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
},
{
"name": "Logger",
"script": "logger-server.js",
"cwd": "/home/martind2000/dev/logger",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
},
{
"name": "Recipe",
"script": "recipe-server.js",
"cwd": "/var/www/recipes",
"watch": true,
"ignore_watch": [
"node_modules"
],
"merge_logs": true,
"autorestart": true,
"restart_delay": 3500,
"max_memory_restart": "300M",
2016-07-04 10:24:15 +00:00
"env_production": {
"NODE_ENV": "production"
2016-07-04 10:21:24 +00:00
}
2016-07-04 10:24:15 +00:00
}
2016-07-04 10:21:24 +00:00
]
}