#!/usr/bin/env ruby | |
puts "Press RETURN when the geocoder cache has been unpacked in tmp/cache/geocoder" | |
gets | |
Geocoder.config[:cache] = ActiveSupport::Cache::FileStore.new('tmp/cache/geocoder') | |
puts "Paste the correct Google API key:" | |
Geocoder.config[:api_key] = gets.strip | |
BackfillUserCityAreaService.new.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment