Heroku has a bit of a different setup for their application hosting. One major issue is that assets wont compile.

The fix is to add a gem to your gemfile


# Gemfile
group :production do
  gem 'rails_12factor'
end

That fixes any 12factor hosts.


Related External Links: