mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
|
|
var path = require('path');
|
|
|
|
var APPS = {};
|
|
|
|
/**
|
|
* Description
|
|
* @method forkPM2
|
|
* @return pm2
|
|
*/
|
|
APPS.forkPM2 = function() {
|
|
var pm2 = require('child_process').fork('lib/Satan.js', [], {
|
|
env : process.env
|
|
});
|
|
return pm2;
|
|
};
|
|
|
|
/**
|
|
* Description
|
|
* @method launchApp
|
|
* @param {} ipm2
|
|
* @param {} script
|
|
* @param {} name
|
|
* @param {} cb
|
|
* @return
|
|
*/
|
|
APPS.launchApp = function(ipm2, script, name, cb) {
|
|
ipm2.rpc.prepare({
|
|
pm_exec_path : path.resolve(process.cwd(), 'test/fixtures/' + script),
|
|
pm_err_log_path : path.resolve(process.cwd(), 'test/' + name + 'err.log'),
|
|
pm_out_log_path : path.resolve(process.cwd(), 'test/' + name + '.log'),
|
|
pm_pid_path : path.resolve(process.cwd(), 'test/child'),
|
|
exec_mode : 'cluster_mode',
|
|
name : name
|
|
}, cb);
|
|
};
|
|
|
|
/**
|
|
* Description
|
|
* @method launchAppFork
|
|
* @param {} ipm2
|
|
* @param {} script
|
|
* @param {} name
|
|
* @param {} cb
|
|
* @return
|
|
*/
|
|
APPS.launchAppFork = function(ipm2, script, name, cb) {
|
|
ipm2.rpc.prepare({
|
|
pm_exec_path : path.resolve(process.cwd(), 'test/fixtures/' + script),
|
|
pm_err_log_path : path.resolve(process.cwd(), 'test/errLogasdasd.log'),
|
|
pm_out_log_path : path.resolve(process.cwd(), 'test/outLogasdasd.log'),
|
|
pm_pid_path : path.resolve(process.cwd(), 'test/child'),
|
|
exec_mode : 'fork_mode',
|
|
name : name
|
|
}, cb);
|
|
};
|
|
|
|
module.exports = APPS;
|