Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 112 down vote accepted
+75

Your interface to Heroku is essentially a Git branch. The Heroku gem does some work through their API, but within your Git repository, it's just a new remote branch.

heroku create yourapp # production
git br -D heroku # delete the default branch

heroku create staging-yourapp # staging
git br -D heroku # delete the default branch

Once you set up multiple applications on Heroku, you should be able to configure your Git repository like this:

git remote add staging git@heroku.com:staging-yourapp.git
git push origin staging

git remote add production git@heroku.com:yourapp.git
git push origin production

I usually work in a 'working' branch, and use Github for my master.

Assuming that's the case for you, your deploy workflow would probably look something like:

git co -b working
# do some work

# push to github:
git co master
git merge working
git push

# push to staging:
git co staging
git merge master
git push origin staging

# push to production
git co production
git merge master
git push origin production
share|improve this answer
Thanks -- this makes some sense (I suck at git). Question: Suppose I'm working on some cutting-edge changes on branch "edge". How can I push that branch to staging-myapp without affecting myapp (which currently is running on the master branch)? Does git push staging edge work? – Horace Loeb Aug 24 '09 at 5:21
1  
I think you might want to post this as a new question Horace... – Luke Bayes Aug 27 '09 at 19:06
3  
Instead of creating apps with the default 'heroku' remote branch and after deleting it, you can use a much nicer solution like: heroku create yourapp --remote your-remote – dombesz Mar 21 '11 at 12:05
1  
Once you set this up, all your heroku commands need to include --app staging or --app production. Is there any way to set a default? (Asking as a comment b/c this seems too targeted to be a full-fledged SO question.) – Paul A Jungwirth Jul 22 '11 at 22:50
2  
@PaulAJungwirth To set a default Heroku app, use something like "git config heroku.remote staging". More in the Heroku docs at devcenter.heroku.com/articles/multiple-environments. – grifaton Sep 3 '12 at 19:10
show 2 more comments

This explains everything you need to know if your a newbie like me: http://devcenter.heroku.com/articles/multiple-environments

share|improve this answer

You should check the heroku_san

It does a pretty good job juggling with environments on heroku.

share|improve this answer

A key part of the original question is about linking up the staging app to a subdomain (dev.myapp.com) of the main app (www.myapp.com). This hasn't been addressed in any of the answers.

Step 1: Configure both production ('myapp') and staging ('staging-myapp') versions of your app as is indicated in the answer by Luke Bayes

Step 2: In your domain management system (e.g. GoDaddy):

Create a CNAME record:  dev.myapp.com 
that points to:   proxy.heroku.com

Step 3: Configure Heroku to route dev.myapp.com to staging-myapp:

heroku domains:add dev.myapp.com --app staging-myapp

After the CNAME record has had time to propagate, you will be able to run your staging app at dev.myapp.com.

share|improve this answer
1  
how about access control so it doesn't show up in google etc. and people don't stumble upon it and think its the real thing? any nice solutions? – brittohalloran Jun 14 '12 at 16:07
Yes, the easiest way is to skip the GoDaddy step and access the "dev" version of your app directly off the Heroku domain using the Heroku URL. (e.g. stormy-lake-5483.heroku.com.) However, if you want to have 'dev' off your domain as described here, you can always install a robots.txt file to tell google, bing, et. al. to not index your dev site. That will help keep it out of the search engines. – Don Jun 16 '12 at 3:05
I ended up adding a before_filter hook to my application_controller to catch EVERYTHING in staging and force the user to login as an admin, then set an admin cookie so I can still see the app from the point of view of a 'non-admin'. Working pretty good for me. – brittohalloran Jun 16 '12 at 3:28
Very clever... I like it! – Don Jun 16 '12 at 3:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.