Go to file
Kegan Myers 94b3fcab37 add es6 note 2016-06-09 16:16:17 -05:00
.gitignore initial commit 2016-06-09 16:13:33 -05:00
LICENSE.md initial commit 2016-06-09 16:13:33 -05:00
README.md add es6 note 2016-06-09 16:16:17 -05:00
finish.js initial commit 2016-06-09 16:13:33 -05:00
index.js initial commit 2016-06-09 16:13:33 -05:00
link.js initial commit 2016-06-09 16:13:33 -05:00
package.json initial commit 2016-06-09 16:13:33 -05:00
prep.js initial commit 2016-06-09 16:13:33 -05:00

README.md

shipit-secrets

A simple secret inclusion task for shipit, inspired by capistrano.

N.B. This project uses ES6 features, and as such requires a relatively recent version of node.

Usage

shipit-secrets works out of the box with shipit-deploy. Simply include files/paths to link as secrets.files in your shipit config.

module.exports = function(shipit) {
  require("shipit-deploy")(shipit);
  require("shipit-secrets")(shipit);
  shipit.initConfig({
    "default": {
      secrets: {
        files: {

        }
      }
    }
  });
});
```js