gulp-trello
v0.1.0
Published
A trello plugin for gulp.
Downloads
8
Maintainers
Readme
Gulp Todo
A trello plugin for gulp.
Add some card in your trello board with swag.
/**
* Todo:
* - Fix the world
*/
Installation
Install via npm:
npm install gulp-trello --save-dev
Exemple
var gulp = require('gulp');
var trello = require('gulp-trello');
gulp.task('default', function () {
return gulp.src('app.js')
.pipe(trello({
board: 'YOUR BOARD NAME',
listName: 'YOUR LIST NAME',
key: 'YOUR KEY',
token: 'YOUR TOKEN (see below)'
}));
});
Configuration
- Board its your board id: You can retrieve easily it in the url. Its just before the board name.
- listName: Its the list name. Warning it is case sensitive!
- key: Go on this page to copy the key.
- Token: Use this url to generate one:
https://trello.com/1/connect?key=YOURKEY&name=Gulp-todo&response_type=token&scope=read,write&expiration=never
Contributing
Pull requests are welcome.