|
4 years ago | |
---|---|---|
.gitignore | 4 years ago | |
LICENSE.md | 4 years ago | |
README.md | 4 years ago | |
finish.js | 4 years ago | |
index.js | 4 years ago | |
link.js | 4 years ago | |
package.json | 4 years ago | |
prep.js | 4 years ago |
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.
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