Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enabling Ruby PostGIS support on Heroku

I'm trying to enable PostGIS in my Rails app on Heroku. My Gemfile includes the activerecord-postgis-adapter gem:

gem 'activerecord-postgis-adapter', '3.0.0'

However, after booting up my instance, I don't see full support enabled:

$ heroku run irb
Running `irb` attached to terminal... up, run.5549
irb(main):001:0> require 'rgeo'
=> true
irb(main):002:0> RGeo::Geos.supported?
=> false

I've added the heroku-geo-buildpack,as specified in the PostGIS article, though I'm using the newer, true multi-buildpack format:

$ heroku buildpacks
=== staging Buildpack URLs
1. https://github.com/cyberdelia/heroku-geo-buildpack.git#1.3
2. https://github.com/heroku/heroku-buildpack-ruby.git#v140

I'm confused, since my build process looks correct:

-----> Multipack app detected
-----> Fetching custom git buildpack... done
-----> geos/gdal/proj app detected
       Using geos version: 3.4.2
       Using gdal version: 1.11.1
       Using proj version: 4.8.0_1
-----> Vendoring geo libraries done
-----> Fetching custom git buildpack... done
-----> Ruby app detected
-----> Compiling Ruby/Rails
...

What am I missing? I don't have a BUILDPACK_URL environmental variable set, as I gather it's for the old multi-buildpack approach.

like image 476
pr1001 Avatar asked Sep 26 '22 16:09

pr1001


1 Answers

PostGIS does work with Heroku Free dyno and :
- Rails 4.2
- activerecord-postgis-adapter 3.1.4

You have to:

  1. set your config/database.yml like this:

default: &default
  adapter: postgis
  encoding: unicode
  # For details on connection pooling, see rails configuration guide
  # http://guides.rubyonrails.org/configuring.html#database-pooling
  pool: 5

development:
  <<: *default
  database: adopt_your_geek_development
  username: postgres
  host: mydb.com
  port: 9999
  postgis_extension: postgis
  schema_search_path: public,postgis

...

production:
  <<: *default
  database: appname_production
  username: appname
  password: <%= ENV['ADOPT_YOUR_GEEK_DATABASE_PASSWORD'] %>
  postgis_extension: postgis
  schema_search_path: public,postgis

  1. Add buildpacks:

$ heroku buildpacks:add https://github.com/ddollar/heroku-buildpack-multi.git

With the following .buildpacks file:

$ cat .buildpacks 
https://github.com/cyberdelia/heroku-geo-buildpack.git
https://github.com/heroku/heroku-buildpack-ruby.git

  1. Then add a little monckey patch in config/environments/production.rb

module ActiveRecord
   module ConnectionHandling
     class MergeAndResolveDefaultUrlConfig
       private
       def config
         @raw_config.dup.tap do |cfg|
           if url = ENV['DATABASE_URL']
             cfg[@env] ||= {}
             cfg[@env]["url"] ||= url.try(:gsub, "postgres", "postgis")
           end
         end
       end
     end
   end
end

I works for me right now on Heroku free dyno with free postgres.

like image 156
Bruno Le Hyaric Avatar answered Oct 13 '22 21:10

Bruno Le Hyaric