What do you run locally to get a console?  Whatever it is, prefix it
with `heroku run` and you should be set.  e.g. if you normally type:

    $ bundle exec rails console

Then to run remotely:

    $ heroku run 'bundle exec rails console'

Or if it's a Sinatra app:

    $ bundle exec irb -r ./web

On Heroku:

    $ heroku run 'bundle exec irb -r ./web'

Adam

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.

Reply via email to