I've gotten comfy with SVN, and now I need a way to deploy my code to staging or live servers more easily. I'd also like some method for putting build info in the footer of this site to aid in testing. Site is PHP/MySQL.
|
2
|
|
|
|
|
|
First enable keyword substitution for a file where you wish to have the revision info:
The add to the file where you want the Revision info stored:
Further readings: http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html |
||||
|
|
|
If you want to update the version number in a projects AssemblyInfo.cs you may be interested in this article: CodeProject: Use Subversion Revision numbers in your Visual Studio Projects
|
||
|
|
|
|
A script to svn update on an as needed basis. SVN supports keywords. You can add which keywords you want to expand to the keywords property, and SVN will expand then. See $Id$ or $Rev$, or keywords described in the SVN book. |
|||
|
|
|
|
I'm a fan of using capistrano for pushes. Refer to here. You could use the SVN $Rev$ property to get the revision number into your footer. |
||
|
|
|
|
The properties methods will only give you the last revision number of the file you have the property in, not the head revision of the whole repository (a la the Stack Overflow footer). If you are wanting that, you'll need to use svnversion. I recently started using Capistrano on a project and it superb and very flexible and powerful. I ended up deviating quite far from its normal usage, but it makes one "click" deployment much easier. |
||
|
|
|
|
A really simple way to manage this is to setup your app in the following way: Simply make your deployment app a working copy of your trunk ( Also, you can look at what Ruby on Rails does with Capistrano.. it's the same basic concept but supports transactional backups if the update goes wrong in the middle by storing each checkout in a separate folder and symlinking the "latest" to your /www directory. |
||
|
|
|
|
The keywords stuff will fail in plenty of cases -- like if you've modified the source before deploying, or if you check in from one directory in your project then a different directory in the same project will have different revision numbers. Check the docs carefully to make sure the keywords do what you think they do. The better way is to use the svnversion program to generate information about your checked out directories at compile or deployment time. Svnversion will show information about the version of ALL of your directories as well as flagging whether or not the source was locally modified. |
||
|
|
|
|
The method I've come up for my php projects, may not be the best method but after some time searching certainly seems to be, is to do a checkout, run a version check, wipe out the .svn folders, and move on. Here is a portion of shell script I've written: (first, you need the script the checkout your repo)
|
||
|
|
