Heroku (pronounced her-OH-koo) is a cloud platform for Ruby, Node.js, Clojure, Python, PHP and JVM-based (Java, Scala, etc.) applications that features a Git-based deployment strategy, a large number of services offered as add-ons, and a full API.
369
votes
27answers
67k views
Permission denied (publickey) when deploying heroku code. fatal: The remote end hung up unexpectedly
I'm attempting to deploy my code to heroku with the following command line:
git push heroku master
but get the following error:
Permission denied (publickey).
fatal: The remote end hung up ...
147
votes
8answers
20k views
Heroku in real life apps [closed]
What is your experience with using Ruby on Rails on Heroku in a production environment?
Apart from the issue of the expensive HTTPS, do you see any drawback in the way it manages processes, memory ...
111
votes
5answers
36k views
heroku - how to see all the logs
I have a small app on heroku. Whenever I want to see the logs I go to the command line and do
heroku logs
That only shows me about 100 lines. Is there not a way to see complete logs for our ...
110
votes
3answers
16k views
How to link a folder with an existing Heroku app
I have an existing Rails app on GitHub and deployed on Heroku. I'm trying to set up a new development machine and have cloned the project from my GitHub repository. However, I'm confused as to how to ...
110
votes
6answers
12k views
Rails 2.3-style plugins and deprecation warnings running task in Heroku
I'm upgrading to Rails 3.2, and running rake db:migrate gives me several errors of the form:
DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will ...
106
votes
10answers
24k views
93
votes
5answers
35k views
How to fix the uninitialized constant Rake::DSL problem on Heroku?
I am getting errors similar to the ones in these questions, except mine are occuring on Heroku:
2011-05-30T09:03:29+00:00 heroku[worker.1]: Starting process with command: `rake jobs:work`
...
81
votes
8answers
20k views
Cannot push to Heroku because key fingerprint
I am new to Rails, and I was trying to deploy a very simple app to Heroku. This is the second app that I deploy, and the first one I was able to do it just fine. However I am having some issues with ...
81
votes
7answers
9k views
Easy way to prevent Heroku idling?
In the Heroku free apps the dynos seem to keep idling - my app has very low traffic but it's also not really acceptable in my case that my users have to wait 20+ seconds to spin up a new dyno.
...
76
votes
4answers
19k views
Heroku error: “Permission denied (public key)”
I keep getting this error. I am using Mac. I generated a key and added it to heroku using
heroku config:add key="ssh-rsa blahblah=me@me.com"
But this doesn't work. I keep getting the same error. ...
70
votes
2answers
24k views
Heroku free account limited?
Currently, I am running wordpress as my blog engine on free hosting, but I'm planning to move to use git-based blog engine(Jekyll, Toto) on Ruby platform. Then I see Heroku provides free account ...
70
votes
1answer
2k views
Heroku truncates HTTP responses?
I am running a Flask/Gunicorn Python app on a Heroku Cedar dyno. The app returns JSON responses to its clients (it's an API server, really).
Once in a while clients get 0-byte responses. It's not me ...
64
votes
4answers
11k views
Staging instance on Heroku
I'd like to be able to push code to dev.myapp.com for testing and then to www.myapp.com for production use. Is this possible with Heroku?
61
votes
4answers
18k views
Pushing app to heroku problem
I am trying to push my app to heroku and I get the following message:
$ heroku create
Creating electric-meadow-15..... done
Created http://electric-meadow-15.heroku.com/ | ...
58
votes
3answers
7k views
renamed heroku app from website, now it's not found
After renaming my heroku app from the heroku website, whenever I cd to it's directory in a terminal and run any heroku command, I get App not found. Does anybody know of a way to remedy this?
51
votes
1answer
11k views
Why do people use Heroku when AWS is present? What's distinguishing about Heroku
I'm a beginner RoR programmer that's planning to deploy my app using Heroku. Word from my other advisor friends says that Heroku is really easy, good to use. The only problem is that I still have no ...
51
votes
5answers
23k views
Heroku/devise - Missing host to link to! Please provide :host parameter or set default_url_options[:host]
I am trying to push my app on heroku. I am still in dev.
I use devise with the confirmable module.
When I try to add a user with the heroku console I got this error:
Missing host to link to! Please ...
48
votes
6answers
9k views
how to push different local git branches to heroku/master
Heroku has a policy of ignoring all branches but 'master'.
While I'm sure Heroku's designers have excellent reasons for for this policy (I'm guessing for storage and performance optimization), the ...
48
votes
5answers
10k views
Redis and Memcache or just Redis?
I'm using memcached for some caching in my Rails 3 app through the simple Rails.cache interface and now I'd like to do some background job processing with redis and resque.
I think they're different ...
47
votes
4answers
17k views
Heroku vs EngineYard: which one is more worth the money?
I looked this up on Google, but wanted more opinions before I committed to either service. Has anyone had experience with either (or maybe both) services? Are there any advantages or disadvantages ...
47
votes
4answers
12k views
Why are my basic Heroku apps taking two seconds to load?
I created two very simple Heroku apps to test out the service, but it's often taking several seconds to load the page when I first visit them:
Cropify - Basic Sinatra App (on github)
Textile2HTML - ...
47
votes
6answers
7k views
Quickest way to find out heroku database size
What is the quickest way to find out the current size of my shared database in Heroku?
43
votes
11answers
27k views
How do you write a case insensitive query for both MySQL and Postgres?
I'm running a MySQL database locally for development, but deploying to Heroku which uses Postgres. Heroku handles almost everything, but my case-insensitive Like statements become case sensitive. I ...
41
votes
8answers
12k views
How do you easily change from SQLite to PostgreSQL in Rails
I have a rails app that's databases are in SQLite (The dev and production). Since I am moving to heroku, I want to convert my database to PostgreSQL (I think that's how to spell it).
Anyways, I heard ...
39
votes
9answers
9k views
Multiple heroku accounts
I'm having trouble when working with multiple Heroku accounts on my computer.
The thing is that it's worked great before by switching accounts with the heroku gem. But now (even though I've generated ...
38
votes
6answers
5k views
Can I run coffeescript in Heroku?
I have a node.js app written in CoffeeScript.
I'm wondering what is needed in order to host the app on Heroku.
Thanks
38
votes
4answers
19k views
Problem deploying Rails 3.1 project to Heroku: Could not find a JavaScript runtime
I am having trouble deploying a rails 3.1 beta project to heroku. The problem happened at the database migration step. When I ran:
heroku rake db:migrate
I got error message:
> rake aborted!
> ...
37
votes
3answers
5k views
On Heroku Cedar | should I use thin or unicorn
I recently 'upgraded' my app to the cedar platform on heroku. By default I am using thin as a web server. But I have always been tempted to use unicorn for concurrency and having my dyno dollar go ...
35
votes
3answers
13k views
Rails 3.1 - Pushing to Heroku - Errors installing postgres adapter?
I just upgraded to Rails 3.1 and the first app i've tried to deploy to Heroku has encountered a problem relating to Postgres adapter. I'm able to push the app to heroku but then when i try to migrate ...
34
votes
3answers
10k views
How can I pull an existing heroku app to new location for development?
I currently have the latest version of my code on another computer that I want to develop from (Home computer and laptop for when I'm out and about) I set up heroku for my app on my laptop. Now I need ...
31
votes
3answers
8k views
how to stop an app on heroku
I have an app on heroku which is being used by few users. However, I notice there are some data issues which i'd like to fix and stop the app in the mean time so users don't enter anything new.
Is ...
31
votes
5answers
8k views
Heroku: web dyno vs. worker dyno? How many/what ratio do I need?
I was curious as to what the difference between web and worker dynos is on Heroku. They give a one sentence explanation on their pricing page, but this just left me confused. How do I know how many to ...
31
votes
3answers
4k views
Mongoid 3 + Heroku (MongoHQ) cause Moped::Errors::OperationFailure
With Rails 3, after upgrading from Mongoid 2.x to Mongoid 3.x, my Heroku + MongoHQ setup stopped working. Funny thing is, that my development & test frameworks and my whole test suite passes just ...
30
votes
5answers
8k views
Heroku/GoDaddy: send naked domain to www [closed]
I am trying to figure out how to get the naked domain for my website to redirect to the www domain. I am using Heroku and have the domain from GoDaddy. Because of Heroku, my A records are already ...
29
votes
8answers
13k views
postgreSQL group by different from mysql?
I've been migrating some of my mySQL queries to postgreSQL to use Heroku... most of my queries work fine, but I keep having a similar recurring error when I use group by:
ERROR: column "XYZ" must ...
29
votes
5answers
6k views
Share database between 2 apps in Heroku
I want to access the database of an app from another Heroku app. Is that possible in the shared database?
Thanks
29
votes
2answers
1k views
Cleaning up the bundler cache when deploying to heroku
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 ...
28
votes
2answers
5k views
Why does Heroku log using the server time rather than the Rails time zone?
UPDATE: Ok, I didn't formulate a good Q to be answered. I still struggle with heroku being on -07:00 UTC and I at +02:00 UTC.
Q: How do I get the log written in the correct Time.zone ?
The 9 hours ...
28
votes
2answers
6k views
rails 3.1 deployment on heroku .css isn't precompiled error
Update
I got this error because I had a public.css and public.js file that was not compiled with the rest of the .css and .js files. The solution was to add this line to the production.rb file
# ...
28
votes
0answers
1k views
Heroku like hosting in Europe? [closed]
Is there a serious heroku challenger that would not be in US ?
26
votes
10answers
9k views
Heroku Postgres Error: PGError: ERROR: relation “organizations” does not exist (ActiveRecord::StatementInvalid)
I'm having a problem deploying my Rails app to Heroku, where this error is thrown when trying to access the app:
PGError: ERROR: relation "organizations" does not exist ...
26
votes
6answers
9k views
Best way to combine and minify JS / CSS on Heroku
First of all, according to this answer, the :cache => true option on stylesheet_link_tag and javascript_include_tag doesn't work on Heroku. Is this true? I've found :cache => true to work ...
26
votes
4answers
6k views
Rails 3 and Heroku: automatically “rake db:migrate” on push?
I have a slight annoyance with my heroku push/deploy process, which otherwise has been a joy to discover and use.
If i add a new migration to my app, the only way i can get it up onto the heroku ...
25
votes
4answers
9k views
How to view remote Git revision on Heroku
For deploying to Heroku, I use git push heroku master. But how do I see which revision I pushed up to heroku? (I'm often in doubt if I pushed the recent version up)
For those not familiar with it, ...
25
votes
5answers
6k views
How do I clear stuck/stale Resque workers?
As you can see from the attached image, I've got a couple of workers that seem to be stuck. Those processes shouldn't take longer than a couple of seconds.
I'm not sure why they won't clear or how ...
25
votes
10answers
4k views
Error when pushing data to Heroku: time zone displacement out of range
I run the following command to push the contents of my local database to Heroku:
heroku db:push --app my-app
From my home computer this works flawlessly but from my work computer I get this error:
...
25
votes
4answers
5k views
Connect to a heroku database with pgadmin
I would like to manage my heroku database with pgadmin client. By now, I've been doing this with psql.
When I use data from heroku pg:credentials to connect de DB using pgadmin, I obtain:
An error ...
24
votes
4answers
8k views
cloned project from github. heroku does not work
I cloned a project from github over to my desktop. I used to work on it form my laptop.
However, on laptop heroku does not seem to work for this app eventhough i have it installed.
First problem:
...
24
votes
6answers
6k views
Can I set up socket.io chat on heroku?
I have a simple socket.io chat application which I've uploaded to one of the new Heroku 'cedar' stacks.
Now I almost have everything working but I've hit one stumbling block. On my localhost, I open ...
23
votes
3answers
6k views
Undefined method `image_will_change!' for CarrierWave on Heroku
I have a simple model that mounts a Carrierwave uploader. Everything works fine in development, but I get an undefined method "image_will_change!" error on heroku.
class Receipt < ...


