I'd like to update an environment variable or something to track the time of the deploy that is currently active. Is there any way to do this automatically from within my app on Heroku, or do I have to do it as part of a deploy script? Ideally, I'd like something that would work with me using TDDium for CI, and letting them do the push to Heroku for me when the build passes.
|
|
|
1. There is no automatic method when deploying to Heroku unless you make a deploy script/task. (I searched for this too in June 2012). I have a rake task that does a deploy, part of it sets GIT_TAG and my web page (application layout in rails) prints that to the page. Heres how I write to the Heroku GIT_TAG config var (using a Rails-based Rake task):
2. With tddium: tddium now supports a "post build hook" and I augment their standard version to set the GIT_TAG during that process. read and follow http://blog.tddium.com/2012/05/09/heroku-continuous-deployment/ first and to the "post_build_hook" task add something to read the tag and set the heroku config var as demonstrated:
Notes:
|
|||
|
|
Use Environment Variables on HerokuYou could use Heroku's config-vars. These are really just environment variables that you configure through the Heroku CLI. For example, you could store the current date in an environment variable named DEPLOY_TIMESTAMP.
You should then be able to access this environment variable from within your application or from the command line. The value can be accessed with Automate with AliasesIf you want to automate this somewhat, you can create a Git alias to push to Heroku and update DEPLOY_TIMESTAMP at the same time. Please note that you can't overwrite the names of real Git commands like push, but you can add a custom action such as pushstamp. For example:
See Also |
|||
|