Clone repo:
git clone git://github.com/maccman/juggernaut.git
cd juggernaut
Create Heroku app:
heroku create myapp --stack cedar
heroku addons:add redistogo:nano
git push heroku master
heroku ps:scale web=1
heroku open
Find RedisToGo url
heroku run node
process.env.REDISTOGO_URL
And then publish from Juggernaut's Ruby gem:
irb
require "juggernaut"
Juggernaut.url = "REDISTOGO_URL"
Juggernaut.publish("channel1", "woo! it's working")
@maccman and @Rick823, I'm trying to use it without the add-on on Heroku. I set
REDISTOGO_URL
manually. But I get error H13. Do I can not use without the add-on due to some kind of Redis To Go infrastructure dedicated to Heroku?