# setup the database
bundle exec rake db:setup
# start rails server
rails s
# and in another terminal, start Sidekiq
bundle exec sidekiqThen go to localhost:3000 and start scraping yelp businesses!
app/controllers/businesses_controller.rb
which calls the YelpJob in
which is just used as an asynchronous wrapper around YelpScraper
which does most the work.