Whenever I'm deploying to Heroku (Ruby on Rails app using the heroku_san gem) it says the following:
Cleaning up the bundler cache.
Would have removed sitemap_generator (2.0.1.pre1)
Would have removed newrelic_rpm (3.5.5.38)
Would have removed…
I'd like to use heroku_san to deploy multiple environments to heroku. I'm using dragonfly for image handling and S3 for storage. Usually you can add your key and secret for the storage using heroku config:add S3_KEY=… S3_SECRET=… directly.
So I've…
i am trying to deploy my app on heroku
it contains 5 files
1.config.ru
with code
require 'rack'
require './myapp'
run MyApp.new
2.Gemfile
with code
source "http://rubygems.org"
gem 'grape'
gem 'sequel'
gem 'heroku'
gem 'rake'
gem 'pg'
gem…
For example how do you push code to specific heroku application using the heroku_san rake shortcut commands, eg.
rake otherapp heroku:push
(taken from http://jqr.github.com/2010/08/27/easy-heroku-deploys-with-heroku-san.html )
I keep getting:
rake…
Using iTerm2 on Mountain Lion, how can I stop the tail of logs on heroku?
Ctrl-C doesn't work.
Workaround is to kill the process id, but that is pretty inconvenient.
I opened an issue for this:…
I have a rails app that is using heroku_san to deploy to heroku. when i run rake staging console it gives me a console to the staging site on heroku. However, when I run
>Rails.env
=> "production"
this is the output. Here is my heroku.yml…
Problem is that sometimes I can't access my site.
I developed my site using Ruby on Rails 3, Refinery CMS and deployed it to heroku.
I bought the domain from domainsite.com.
I can always access my site using the heroku suffix i.e.…
I am configuring heroku_san for deploying Rails to Heroku. When I run any rake task it creates, I keep getting this error:
rake production deploy
No heroku apps are configured. Run:
rails generate heroku:config
I…