Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunnerlivio/trello-scrum-to-template
Parses the Trello data and prints it in the given template
https://github.com/brunnerlivio/trello-scrum-to-template
jinja latex scrum trello
Last synced: 4 months ago
JSON representation
Parses the Trello data and prints it in the given template
- Host: GitHub
- URL: https://github.com/brunnerlivio/trello-scrum-to-template
- Owner: BrunnerLivio
- License: apache-2.0
- Created: 2018-02-06T12:10:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-20T08:05:14.000Z (almost 7 years ago)
- Last Synced: 2024-10-10T09:54:33.552Z (4 months ago)
- Topics: jinja, latex, scrum, trello
- Language: JavaScript
- Homepage:
- Size: 169 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://trello.com/app-key)
2. Get your Trello secret by click on "... you can manually generate a **Token**"### CLI
```bash
trello-scrum-to-template --id YOUR_BOARD_ID --appkey TRELLO_APPKEY --secret TRELLO_SECRET [-b Backlog] [-t default/latex.template] [--usebrackets]
```### NodeJS
```javascript
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](EXAMPLE.md)
## Installation
See [INSTALLATION.md](INSTALLATION.md)