Created
December 30, 2012 06:44
-
-
Save zph/4411301 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install a sane Ruby Version Manager along with Recent Ruby | |
\curl -L https://get.rvm.io | bash -s stable --ruby | |
# Source the installed script to allow for using RVM this first time | |
# Future logins will automatically source RVM using your bashrc or zshrc | |
source ~/.rvm/scripts/rvm | |
# Clone Trello-Archiver | |
git clone https://github.com/zph/trello-archiver.git | |
# Move into folder | |
cd trello-archiver/ | |
# Install needed Ruby Gem dependencies | |
# Ruby Gems are like Python Eggs?? | |
bundle install | |
# Copy the default config template | |
cp config.example.yml config.yml | |
# Open config w/ favorite editor | |
vim config.yml | |
# See instructions in config for getting auth keys from Trello.com | |
# Then try out the backup scripts! | |
ruby bin/trello_backup.rb | |
ruby bin/trello_autoarchive.rb | |
# Contact me, @_ZPH on Twitter | |
# or www.civet.ws for help/feature requests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment