mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
25 lines
441 B
JSON
25 lines
441 B
JSON
{
|
|
/**
|
|
* Application configuration section
|
|
* http://pm2.keymetrics.io/docs/usage/application-declaration/
|
|
*/
|
|
apps : [
|
|
|
|
// First application
|
|
{
|
|
name : "http-4.6",
|
|
script : "http.js",
|
|
interpreter : "node@4.6.0"
|
|
},
|
|
{
|
|
name : "http-6.7",
|
|
script : "http.js",
|
|
force : true,
|
|
env : {
|
|
PORT : 8002
|
|
},
|
|
interpreter : "node@6.7.0"
|
|
},
|
|
]
|
|
}
|