What does your Rails deployment look like? The details of your Capistrano recipe are really less about Git and Github vs. subversion (for example), and more about which Rails server you're using (e.g. Mongrel vs. Passenger).
The Github Capistrano guide (http://github.com/guides/deploying-with- capistrano) seems to have a fair amount of information on setting up the Git specific parameters, although it's not exhaustive. Personally, I'm a fan of the :copy strategy (at least for a small number of app servers), as you don't have to set up ssh keys that way. I usually use git_shallow_clone to speed up the process. The relevant Capistrano settings look like this: set :repository, "<your github repository url>" set :scm, :git set :deploy_via, :copy set :copy_cache, true set :git_shallow_clone, 1 set :branch, "master" On Apr 22, 3:05 am, Hunt Jon <[email protected]> wrote: > Hi, > > I wonder if you have documentation on deploying Rails applications > using GitHub and Capistrano. > > I found 2 articles on the wiki, but it would great if you have more > approachable ones. > > John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
