gem install twitter_ebooks -v 2.2.6
ebooks new my_ebooks
ebooks consume corpus/my_ebooks.csv
ebooks gen model/my_ebooks.model
ruby run.rb
gem install dotenv
require 'dotenv'
Dotenv.load(".env")
CONSUMER_KEY = ENV['EBOOKS_CONSUMER_KEY']
CONSUMER_SECRET = ENV['EBOOKS_CONSUMER_SECRET']
OAUTH_TOKEN = ENV['EBOOKS_OAUTH_TOKEN']
OAUTH_TOKEN_SECRET = ENV['EBOOKS_OAUTH_TOKEN_SECRET']
gem install bundler
bundle install
git init
git add .
git rm --cached .env
git commit -m "First commit"
heroku git:remote -a my-ebooks
git push heroku master
heroku plugins:install https://github.com/ddollar/heroku-config
heroku config:push
heroku logs -tn 5