Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the current standard way to deploy a Rails app?

Up until now I've been deploying Rails apps to our Apache/Passenger setup using a simple Rake task that I wrote. I haven't tried to mess around with Capistrano or Vlad the Deployer.

However, now more developers are coming on board, and I'm interesting in arranging things so that the deployment process runs the tests first and won't deploy unless they all pass. So I'm revisiting the question.

It's been a while since I looked into this. What are most people doing these days? Still using Capistrano? Writing individual Rake tasks? Something else?

like image 293
Ethan Avatar asked Nov 29 '22 06:11

Ethan


1 Answers

Capistrano is still the standard for typical Rails deployments, yes.

like image 97
btw Avatar answered Dec 05 '22 12:12

btw