Deploy Noodall on Heroku - noodall/noodall GitHub Wiki

In order to run a Noodall app on Heroku you will need the following add-ons installed.

heroku addons:add sendgrid:starter

heroku addons:add memcache:5mb

heroku addons:add mongohq:free

You should define which parts of Gemfile to use

heroku config:add BUNDLE_WITHOUT="development:test"

Caching Set Up

Because Noodall uses last modified to control the cache which from the research I've done Heroku's varnish does not support. We need to set up noodall to bypass Varnish and use rack-cache instead.

Put the following in your Gemfile

https://gist.github.com/741873#file_gemfile

And set up your environment file

https://gist.github.com/741873#file_production.rb