for $ cap staging deploy to work, you need to wrap your staging server setup in a capistrano task. You also need to require all the files with tasks in them in your deploy.rb so the staging file could look like:
task :staging do puts "CNK in staging.rb" set :user, 'cnk' set :domain, 'staging-alumni.xxx.edu' set :application, 'alumni' set :deploy_to, "/srv/www.alumni.xxx.edu/staging" end and then add require 'config/deploy/staging' to your config/deploy.rb -- -Nick Howard --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Capistrano" 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.co.uk/group/capistrano?hl=en -~----------~----~----~----~------~----~------~--~---
