How to use Radiant trunk in your subversion-managed project
If you are developing a project based around Radiant, and want to use Radiant trunk (or some other non-gem version), here is how to do that.
cd ~/srcsvn co http://svn.radiantcms.org/radiant/trunk/radiant/ radiant_trunkcd radiant_trunk/configln -s database.mysql.yml database.ymlscript/generate instance -d mysql ~/your/project/trunkcd ~/your/project; svn add trunk; svn commit -m"initial radiant file structure, without pointing to a custom radiant version (yet)"cd vendorand set your Radiant version…- With a subversion external:
svn propset svn:externals 'radiant http://svn.radiantcms.org/radiant/trunk/radiant/ .' - With piston:
piston import http://svn.radiantcms.org/radiant/trunk/radiant/
- With a subversion external:
svn commit -m"Fixing project to specific Radiant version."
