#Description#
Simple Dashing Job to display Trello info about your boards. Uses Trello API.
#Dependencies# ruby-trello
Add it to dashing's gemfile:
gem 'ruby-trello' and run bundle install. Everything should work now :)
#Usage# To use this widget, put the trello.rb file in your /jobs folder.
To include the widget in a dashboard, add the following snippet to the dashboard layout
<li data-row="1" data-col="1" data-sizex="1" data-sizey="1">
<div data-id="my-trello-board" data-view="List" data-title="Trello Board"></div>
<i class="icon-trello icon-background"></i>
</li>
Hey @danharper83. I just figured it out. You can get a developer_public_key here: https://trello.com/1/appKey/generate# .
Then get your member_token visiting https://trello.com/1/authorize?key=KEY&name=Dashing&expiration=never&response_type=token . Replace the KEY by your actual key from previous step.
You can see some debug messages running dashing start in the console. Dashing will update your Trello data once in 5 minutes by default.
It will display cards summary:
@mordonez thanks a lot!