trello-scrum-to-template
v1.0.0
Published
Parses the Trello data and prints it in the given template
Downloads
1
Maintainers
Readme
trello-scrum-to-template
Parses the Trello data and prints it in the given template
Use Case
- Websites
- LaTeX Templates
- Documentations
- etc.
Usage
- Get your Trello appkey from here
- Get your Trello secret by click on "... you can manually generate a Token"
CLI
trello-scrum-to-template --id YOUR_BOARD_ID --appkey TRELLO_APPKEY --secret TRELLO_SECRET [-b Backlog] [-t default/latex.template] [--usebrackets]
NodeJS
const TrelloScrumToTemplate = require('trello-scrum-to-template');
const data = await TrelloScrumToTemplate({
id: '[YOUR BOARD ID]',
appKey: '[TRELLO APPKEY]',
secret: '[TRELLO SECRET]',
backlogListName: 'Backlog',
template: `
{% for backlog in backlogs %}
((backlog.name))
{% endfor %}
`,
useBrackets: true
});
Example
See EXAMPLE.md
Installation
See INSTALLATION.md