Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web development workflow with svn

I set up my svn in assembla, and I code and test on my local machine that is set up identical to the production server. THen, I commit changes to assembla svn and also ftp upload to my production server.

How can I improve my workflow? I would like to keep my svn on assembla because I can often move to another production server.

Thank you very much!


1 Answers

Better way is to build nant or MSBuild script that will do all dirty work automated. Those scripts also can ftp upload.

I've using on production server script to checkout last changes from svn, build and sync with production folder.

like image 173
AlfeG Avatar answered Apr 20 '26 12:04

AlfeG