-
Install the required gems with
bundle install
-
Get your Trello keys and tokens: Run
irb -rubygems
, then:
require 'trello'
Trello.open_public_key_url # this gives you your api key
Trello.open_authorization_url key: 'YOUR_API_KEY_HERE' # this gives you your member token
- Copy
config.toml.sample
toconfig.toml
and edit it, fill in yourdeveloper_key
andmember_token
Run ./sync.rb --dry-run
. This will only prepare the board (creating the lists) but not create or update any cards.
Run ./sync.rb
. By default, this modifies a test board.
Run ./sync.rb --prod
. You probably do not want to do this.