1.0.0 • Published 6 years ago

trello-scrum-to-template v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

trello-scrum-to-template

Parses the Trello data and prints it in the given template

Use Case

  • Websites
  • LaTeX Templates
  • Documentations
  • etc.

Usage

  1. Get your Trello appkey from here
  2. 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