views:

416

answers:

3

Are there any good deployment tools that can be used with LAMP and Subversion?

Ideally it would handle both code updates and database migrations.

+1  A: 

Capistrano.

Although if you are using php you won't get the benefit of db migrations. It's still nice for deploying.

mk
+2  A: 

Capistrano is a Ruby based application, but it works with any programming language.

I use it with PHP on the LAMP stack. For PHP Symfony users sfPropelMigrationsLightPlugin is a great plugin to handle db migrations.

andyuk
+1  A: 

you could also use something like Phing which is like make or Ant for PHP

ejunker