On 4 Dec 2007, at 03:54, Tenzin Dendup wrote: > For deploying a RoR applications using Capistrano, is it the normal > practise to keep the deploy.rb file within the svn repo of the > application and if so where does it go?
Yes, it is normal practice to keep the deploy.rb file in the application's version control repository. Although the application doesn't need that file when it's running on the server, you and anybody else working on the application need that file to get the application to the server. You should keep the file in your application's config/ directory. > Also it is necessery to keep the deployment receipe within the > application repo or not? It's not necessary. You only need the file where you are triggering the deployment so if it's sitting on your local hard drive in the right place then you'll be able to deploy. Version control has many benefits and most people would recommend that you do keep your recipe in the repository. Regards, Andy Stewart ------- http://airbladesoftware.com --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
