mirror of
https://gitlab.silvrtree.co.uk/martind2000/obrand-admin-server.git
synced 2025-01-10 21:55:08 +00:00
30 lines
582 B
JSON
30 lines
582 B
JSON
{
|
|
/**
|
|
* Application configuration section
|
|
* http://pm2.keymetrics.io/docs/usage/application-declaration/
|
|
*/
|
|
apps : [
|
|
|
|
// First application
|
|
{
|
|
name : "Obrand-Admin-Server",
|
|
script : "obrand-server.js",
|
|
"cwd": "/home/ubuntu/live",
|
|
"watch": true,
|
|
"max_restarts": 64,
|
|
"merge_logs" : true,
|
|
"autorestart" : true,
|
|
"restart_delay" : 3500,
|
|
"max_memory_restart" : "300M",
|
|
|
|
env: {
|
|
COMMON_VARIABLE: "true"
|
|
},
|
|
env_production : {
|
|
NODE_ENV: "production"
|
|
}
|
|
}
|
|
]
|
|
|
|
}
|