I created a capistrano script and it’s creating the deployment
directories but it’s not copying the code from subversion into the
deployment directroy,
…here’s the deploy.db changes I use,
set :application, “myapp”
set :repository, “svn://www.xyz.com/trunk”
role :app, “www.xyz.com”
role :web, “www.xyz.com”
role :db, “www.xyz.com”
set :deploy_to, “/usr/opt/webapps/myapp”
I am using subversion “svn” . Must capistrano use “http”?
I have also tried,
set :repository, “svn://www.xyz.com/trunk/”
set :repository, “svn://www.xyz.com/”
set :repository, “svn://www.xyz.com”
Thanks,
Jim