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?
| ||||
|
feedback
|
|
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:
| |||||||||||||
feedback
|
|
You should check the heroku_san It does a pretty good job juggling with environments on heroku. | |||
|
feedback
|
|
This explains everything you need to know if your a newbie like me: http://devcenter.heroku.com/articles/multiple-environments | ||||
|
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 | |||
|
feedback
|