Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
pm2-deploy /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.02
KB
-rw-rw-r--
README.md
3.08
KB
-rw-rw-r--
deploy
7.57
KB
-rwxrwxr-x
deploy.js
3.87
KB
-rw-rw-r--
package.json
974
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# Deploy system for PM2 This is the module that allows to do `pm2 deploy`. Documentation: http://pm2.keymetrics.io/docs/usage/deployment/ [](https://travis-ci.org/Unitech/pm2-deploy) [](https://npm.im/pm2-deploy) [](https://packagephobia.now.sh/result?p=pm2-deploy) [](https://github.com/Unitech/pm2-deploy/blob/master/LICENSE) [](https://github.com/Flet/semistandard) ## Instalation $ npm install pm2-deploy ## Programmatic Usage ```js var deployForEnv = require('pm2-deploy').deployForEnv; // Define deploy configuration with target environments var deployConfig = { prod: { user: 'node', host: '212.83.163.168', ref: 'origin/master', repo: 'git@github.com:Unitech/eip-vitrine.git', path: '/var/www/test-deploy' }, dev: { user: 'node', host: '212.83.163.168', ref: 'origin/master', repo: 'git@github.com:Unitech/eip-vitrine.git', path: '/var/www/test-dev' } }; // Invoke deployment for `dev` environment deployForEnv(deployConfig, 'dev', [], function (err, args) { if (err) { console.error('Deploy failed:', err.message); return console.error(err.stack); } console.log('Success!'); }); // Rollback `prod` environment deployForEnv(deployConfig, 'prod', ['revert', 1], function (err, args) { if (err) { console.error('Rollback failed:', err.message); return console.error(err.stack); } console.log('Success!'); }); ``` ## API <!-- Generated by documentation.js. Update this documentation by updating the source code. --> #### Table of Contents - [deployForEnv](#deployforenv) - [Parameters](#parameters) - [DeployCallback](#deploycallback) - [Parameters](#parameters-1) ### deployForEnv Deploy to a single environment #### Parameters - `deployConfig` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** object containing deploy configs for all environments - `env` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** the name of the environment to deploy to - `args` **[array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)** custom deploy command-line arguments - `cb` **[DeployCallback](#deploycallback)** done callback Returns **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** return value is always `false` ### DeployCallback Type: [Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function) #### Parameters - `error` **[Error](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error)** deployment error - `args` **[array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)** custom command-line arguments provided to deploy
Close