up vote 2 down vote favorite
share [g+] share [fb]

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

Ideally it would handle both code updates and database migrations.

link|improve this question
feedback

protected by Bill the Lizard Aug 6 '11 at 1:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

3 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

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

Update: Rasmus Lerdorf (creator of PHP) just released WePloy which is what he uses at WePay.

link|improve this answer
feedback

Capistrano.

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

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.