Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of any good, detailed guides for capistrano and deploying rails applications? I'm interested in learning all the different functionality rather than just following a tutorial without really understanding what's happening.

share|improve this question

closed as not constructive by Bo Persson, Kev Sep 16 '12 at 23:21

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

Github made the great tutorial howto setup capistrano.

share|improve this answer
did it help you? – mikhailov Jul 18 '11 at 17:46
1  
Github's tutorial wasn't much of help – Alagu Feb 26 '12 at 14:49

You can reference to the Capistrano Handbook and Getting start guide.

share|improve this answer

I don't know if it could be what you are looking for, but I just wrote how to make Rails 3.2, Nginx and Capistrano work http://www.lifeofadev.eu/posts/deploy-rails-3-2-with-capistrano

share|improve this answer
Thanks for sharing the blog, good stuff! How did you create the database? I'm trying to understand why the Capistrano documentation says I should do that manually rather than with rake db:create, which could be run by a Capistrano task. – Henry Haverinen Oct 4 '12 at 9:39
Thanks :) Anyway, the creation of db must be done only the first time. Why do you want to do it in every deployment? – Marco Sero Oct 4 '12 at 13:19
You're right, I can manually run rake db:create on the deployment host, which would still be database-independent and easier than using MySQL tools directly. – Henry Haverinen Oct 4 '12 at 17:15

I've written this one, that at some point I might move off this gist:

https://gist.github.com/2161449

I agree there is/was a lack. I figured stuff out painfully, and then tried to write it up in a guide for others (and myself to refer back to)

share|improve this answer

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