shipit-pm

0.3.0 • Public • Published

shipit-pm

pm2 tasks for Shipit

support deploy & rollback

Usage

var pm = require('shipit-pm');
var deploy = require('shipit-deploy');
var cnpm = require('shipit-cnpm');
module.exports = function(shipit) {
  deploy(shipit);
  cnpm(shipit);
  pm(shipit);
  shipit.initConfig({
    default: {
      workspace: '/tmp/deploy/node-example',
      deployTo: '/home/work/node-example',
      repositoryUrl: 'https://github.com/demohi/node-example.git',
      ignores: ['.git'],
      keepReleases: 2,
      deleteOnRollback: false,
      shallowClone: true,
      cnpm: {
        flags: '--production'
      },
      pm: {
        production: '/home/work/node-example/current/pm2/production.json',
        development: '/home/work/node-example/current/pm2/development.json'
      }
    },
    development: {
      servers: ['work@10.6.12.167']
    }
  });
}

Readme

Keywords

Package Sidebar

Install

npm i shipit-pm

Weekly Downloads

1

Version

0.3.0

License

MIT

Last publish

Collaborators

  • 306766053
  • mdemo