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.
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 ...
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 ...
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 ...
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`
...
370
votes
27answers
68k 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 ...
16
votes
4answers
10k views
Deploying RoR app to Heroku with Sqlite3 fails
I'm trying to deploy my first app to Heroku. I'm using Sqlite as the database. As far as I know Heroku doesn't use Sqlite - it switches to Postgres in the backend.
When I'm deploying I get the ...
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:
...
112
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 ...
13
votes
4answers
2k views
how to pip uninstall with virtualenv on heroku cedar stack?
I tried to uninstall a module on heroku with:
heroku run bin/python bin/pip uninstall whatever
Pip shows the module in the /app tree then claims to have uinstalled the module, but running the same ...
18
votes
7answers
13k views
Heroku push rejected, no Cedar-supported app detected
Rails app, Rails 3.1.3
git init
git remote add heroku <my heroku repo>
git add .
git commit -a -m "First commit"
git push heroku master
Got:
Counting objects: 102, done.
Delta compression ...
18
votes
6answers
10k views
Heroku, Rails 3 and sqlite3
I experience the same scenario as described here http://www.ruby-forum.com/topic/217022 when I try to deploy my Rails 3 app to Heroku and sqlite3 is defined in the gems file.
...
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
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 ...
22
votes
2answers
9k views
Push from github to heroku without downloading repo
I have a github repo that I want to push to a heroku node. A 3rd host will be co-ordinating this. As I'm going to be doing this on a large scale I want to avoid having to download the contents of the ...
9
votes
5answers
2k views
Why won't Heroku accept my Gemfile.lock in Windows?
I have a rails application that I deploy on Heroku. I'm using several different machines, and I noticed that when I add new dependencies (so that Gemfile.lock is rebuilt) and do bundle install on my ...
9
votes
1answer
2k views
Error in git push heroku master through ssh behind proxy
Brief Context:
Hi, I am a university student (behind proxy 10.3.100.211:8080), new to ROR, Git & Heroku and have been following Ruby on Rails tutorial. I solved the problem of pushing git repo ...
106
votes
10answers
24k views
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 ...
20
votes
4answers
5k views
Using git, how do I ignore a file in one branch but have it committed in another branch?
I've got a project that I'm deploying to heroku. The source code tree includes a bunch of mp3 files (the website will be for a recording project I was heavily involved with).
I'd like to put the ...
22
votes
3answers
14k views
How to configure heroku application DNS to Godaddy Domain?
I have created a heroku application and wants to give domain to it from godaddy.com.
I have configured all three hosts provided by heroku but now I am getting error saying:
Heroku | No such app
...
3
votes
5answers
4k views
Heroku deploy fails after upgrading to bootstrap 2.0.1 via twitter-bootstrap-rails gem
UPDATE:
this error is shown during git push heroku master :
-----> Preparing app for Rails asset pipeline
Running: rake assets:precompile
rake aborted!
couldn't find file ...
1
vote
2answers
3k views
Heroku push master ssh problem
I get this when I am trying to push to my Heroku app:
ssh_exchange_identification: read: Connection reset by peer
fatal: The remote end hung up unexpectedly
I tried regenerating the ssh keys and ...
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!
> ...
22
votes
3answers
3k views
How can I specify a gem to pull from a private github repository?
I have a private repository on Github that I want to use. I deploy my app to Heroku. How can I specify a private repository as the source on my gemfile? I imagine it wouldn't be enough to simply say
...
10
votes
2answers
4k views
Is there a way to set up simple http authentication for an app on heroku?
I want to set up a private staging server on heroku using simple http authentication. Is that possible?
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 ...
14
votes
4answers
11k views
heroku mongohq and mongoid Mongo::ConnectionFailure
UPDATE 9th june 2012:
Setup with mongoid 3.0.0.rc at heroku, see this gist: https://gist.github.com/2900804
UPDATE 22th jan 2011:
Uri now takes precedence in mongoid.yml
...
5
votes
2answers
2k views
How to FTP in Ruby without first saving the text file
Since Heroku does not allow saving dynamic files to disk, I've run into a dilemma that I am hoping you can help me overcome. I have a text file that I can create in RAM. The problem is that I cannot ...
14
votes
3answers
8k views
Heroku error when launch rails3.1 app missing postgres gem
I am trying to deploy to heroku.
Rails 3.1.0.rc4,
I get the following error from Heroku logs:
Starting process with command: `thin -p 48902 -e production -R /home/heroku_rack/heroku.ru start`
...
2
votes
1answer
1k views
Heroku help Amazon RDS rails push database error
I get a 503 Error when trying to push my database to Amazon RDS
Home@PC /c/rails/konkurranceportalen (master)
$ heroku db:push
Loaded Taps v0.3.19
Auto-detected local database: ...
9
votes
2answers
4k views
Deploying Yesod to Heroku, can't build statically
I'm very new to Yesod and I'm having trouble building Yesod statically
so I can deploy to Heroku.
I have changed the default .cabal file to reflect static compilation
if flag(production)
...
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/ | ...
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 ...
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 - ...
15
votes
5answers
6k views
Remote mysql database on Heroku app
Can I use mysql database from my personal web server instead of heroku's database?
I configured my production database like this:
production:
adapter: mysql2
database: somedatabase
...
15
votes
4answers
4k views
Rails, Heroku and Subdomains. Is my special case scenario feasible?
Here is my scenario:
I have an application that will have to support multiple clients. Each client will be given a subdomain for there service. We will also have a brochure website that doesn't have ...
12
votes
3answers
2k views
How to deploy an rails app on heroku from travis-ci?
There is any way to deploy a heroku rails app after a travis-ci success build?
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 ...
10
votes
2answers
6k views
Heroku help deploying Rails app that uses Mysql database
I am trying to deploy a Rails app that uses Mysql
I have:
Created a Heroku app and have pushed my app to heroku.
I have added Amazon RDS I have created a Amazon RDS database instance.
My Heroku ...
9
votes
3answers
5k views
Rails 3.1.1 asset pipeline Heroku caching gotcha
The problem in a nutshell is that in development mode we'd make changes to CSS or JS files but would always get cached/old versions of these files. Nothing I did had any effect. I checked ...
18
votes
5answers
4k views
heroku run console returns 'Error connecting to process'
I have deployed a rails 3.1 app to Heroku Cedar stack, and am trying to perform a:
heroku run rake db:migrate
it returns:
Running console attached to terminal...
Error connecting to process
I ...
10
votes
2answers
5k views
Sendgrid / email sending issues in Ruby on Rails (hosted on Heroku)
im having a problem getting sendgrid to send emails successfully on a rails 3.1 app that's using authlogic for authentication and is being deployed on heroku. i have the following action mailer ...
22
votes
4answers
4k views
blueprint css rails 3.1 help
My blueprint css works on my local machine, but when I push to heroku I get an error.
I have blueprint stored in my app/assets/stylesheets folder and here are the stylesheet tags I'm using:
<%= ...
21
votes
6answers
5k views
Hot deploy on Heroku with no downtime
A bad side of pushing to Heroku is that I must push the code (and the server restarts automatically) before running my db migrations.
This can obviously cause some 500 errors on users navigating the ...
1
vote
1answer
852 views
Errors in evolutions on Heroku
I tried pushing some evolutions to Heroku:
2012-08-30T10:58:00+00:00 heroku[slugc]: Slug compilation finished
2012-08-30T10:58:02+00:00 heroku[web.1]: Starting process with command `target/start ...
16
votes
2answers
2k views
Deploy a subdirectory to Heroku
I have one 'super' repository in GitHub which will contain several applications I would like to deploy to Heroku. Here is an example of my repository.
/app
/.git
/website <-- would like to ...
9
votes
3answers
2k views
How to make python on Heroku https only?
I have python/django app on Heroku (Cedar stack) and would like to make it accessible over https only. I have enabled the "ssl piggyback"-option, and can connect to it via https.
But what is the ...
19
votes
8answers
11k views
push rails app to heroku
I am trying to push a rails application to heroku.
When I get to the last step:
git push heroku master
It doesn't work and gives me these errors:
Counting objects: 85, done.
Delta compression ...
17
votes
2answers
3k views
How do I change column type in Heroku?
I am trying to rake the db:migrations into my heorku instance and I get an error. The FAQ described my error as below:
Cannot change column type
Example: PGError: ERROR: column
...

