My team currently has a web development / database server and a real deployment web server and a real-time database server. We use SVN with storage stored on the development server, but the problem lies in our deployment process.
Currently, when we need to deploy the update in a direct application, we simply use SFTP to transfer from the repository to a live web server, and then modify the database on the real server to reflect the development database. This is a very slow process, since we also minimize all javascript and CSS files.
I used Capistrano for Ruby and Cruise Control for java, but I never used anything for PHP. I would rather not build my own if something already existed. Does anyone know anything?
source share