up vote 36 down vote favorite
53
share [g+] share [fb]

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?

link|improve this question

67% accept rate
feedback

4 Answers

up vote 66 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
link|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
I think you might want to post this as a new question Horace... – Luke Bayes Aug 27 '09 at 19:06
In the interest of getting you going, you would just merge edge to your staging branch and push it. Your production branch is separate and clean. You can always branch it and make changes that only merge back there. – Luke Bayes Aug 27 '09 at 19:08
1  
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
That sounds great to me, I don't have time to confirm right now. If you can edit the answer to reflect this information, please do! – Luke Bayes Apr 21 '11 at 5:31
show 1 more comment
feedback

You should check the heroku_san

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

link|improve this answer
feedback

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

link|improve this answer
feedback

I can't provide many details but:

Heroku can integrate with Git externally. You could deveop in dev.myapp.com. Once it is ready, checkin to the www.myapp.com Git repository and it should deploy it.

So basically, you have two Heroku instances. You use Git to create a "patch" from your dev instance and use that to update the "prod" instance.

-Dave

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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