I'm using capistrano 3.x and I am unable to find documentation on common 
variables that can be set.  I presume my deploy script has an amalgam of 
2.x and 3.x syntax but was unable to find a definitive, complete list of 
all these variables that can be set.

I just learned that ':repository' in 2.x is now 'repo_url' in 3.x.  Where 
can I go to find documentation that can help me learn all these important 
variables?

set :stages, %w(ui-staging ui-prod)
set :default_stage, "ui-staging"

set :application, "ui"
set :deploy_to, '/var/www/'

set :scm, :git
set :repo_url,  "[email protected]:myrepo/myrepo.git"
set :branch, "master"

set :use_sudo, false
set :user, 'deploy'

set :keep_releases, 2
after "deploy", "deploy:cleanup"

For example my cleanup script is not working, I presume this is because I'm 
using 2.x syntax

-- 
You received this message because you are subscribed to the Google Groups 
"Capistrano" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/capistrano/c640dd70-98bb-4cfd-95a3-9049047018e1%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to