Instructions for Debian

Checkout application

svn co http://www.svn-steel.savonix.com/a/svn/application_name_here/trunk/ ./application_name_here

* cd application_name_here - you may have to do the following if you are in the /home folder or another folder that won't let you go directly to application_name_here: ---- cd /var/www/dev

svn up

After checking out a file

Config, Permissions, and Symlinks

cd /var/www/dev/application_name_here/ (replace application_name_here with the name of the application you are working on)

cp config/config.xml.dist config/config.xml

chmod 0777 cache (allows users to write and read files)

cd /var/www/public/a/dev/ (this is our document root for the webserver)

ln -s /var/www/dev/application_name_here/web application_name_here - this connects our files to the webserver

  • The following command adds files in a chunk rather than one by one with the svn add /filename command
svn st | awk '{ print $2 }' | xargs svn add