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?
|
|
||||
|
|
|
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.
Once you set up multiple applications on Heroku, you should be able to configure your Git repository like this:
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:
|
|||||||||||||||||||
|
|
This explains everything you need to know if your a newbie like me: http://devcenter.heroku.com/articles/multiple-environments |
||||
|
|
|
You should check the heroku_san It does a pretty good job juggling with environments on heroku. |
|||
|
|
|
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):
Step 3: Configure Heroku to route dev.myapp.com to staging-myapp:
After the CNAME record has had time to propagate, you will be able to run your staging app at dev.myapp.com. |
|||||||||||
|
