gulp-cf-push
v1.1.1
Published
Gulp plugin to push an app to Pivotal CloudFoundry
Downloads
13
Maintainers
Readme
gulp-cf-push
Gulp plugin to push and app to Pivotal CloudFoundry
Installation
In the terminal run the following command
npm install gulp-cf-push --save-dev
How to use
Import NPM module in gulpfile.js
var cfPush = require('gulp-cf-push');
/* Pivotal CloudFoundry - cf push **/
gulp.task('cf-push', function(done){
cfPush('manifest.yml');
});