pm2/test/fixtures/path-resolution/ecosystem2.config.js

16 lines
323 B
JavaScript

module.exports = {
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps : [
{
name : "test",
script : "./echo.js",
out_file : 'echo-out.log',
error_file : 'echo-err.log',
pid_file : 'echo-pid.log'
}
]
}