mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
16 lines
323 B
JavaScript
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'
|
|
}
|
|
]
|
|
}
|