https://github.com/ashcrow/trello-card-maker
Simple tool to make trello cards via yaml
https://github.com/ashcrow/trello-card-maker
Last synced: about 1 year ago
JSON representation
Simple tool to make trello cards via yaml
- Host: GitHub
- URL: https://github.com/ashcrow/trello-card-maker
- Owner: ashcrow
- License: mit
- Created: 2016-10-09T18:23:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-09T19:13:51.000Z (over 9 years ago)
- Last Synced: 2025-02-13T18:27:53.325Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
trello-card-maker
=================
Simple tool to make trello cards via yaml. Useful when you'd like your editor to be able to create new cards.
See the [template](/template.yml) as a starting point for templatizing to your teams specific format.
Configuration
-------------
The tool requires a configuration file like so:
```yaml
api_key: YOUR_API_KEY
api_secret: YOUR_API_SECRET
token: YOUR_TOKEN
```
By default it will check ``~/.config/tcm.yaml``.
Example
-------
```
$ trello-card-maker mycard.yml
INFO - Found board "Test"
INFO - Found list "Completed"
INFO - Created card "My card"
INFO - Added checklist "tasks" to card "My card"
INFO - Added label "test" for card "My card"
INFO - Card link: https://trello.com/c/....
```
Vim Binding Example
-------------------
```
# File: ~/.vimrc
command TrelloNewCard execute "!trello-card-maker %:p"
```