/config/deploy.rb

https://bitbucket.org/jshalooua/capistrano-testing · Ruby · 19 lines · 7 code · 5 blank · 7 comment · 0 complexity · 81324690aebefbcaaecf50fbf4a7f215 MD5 · raw file

  1. set :application, 'capistrano testing'
  2. set :repo_url, 'https://jshalooua@bitbucket.org/jshalooua/capistrano-testing.git'
  3. set :ssh_options, {:forward_agent => true}
  4. #we will set this in the evnironment specific deployment files
  5. #ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }
  6. set :deploy_to, "/opt/kuali/rhubarb"
  7. set :scm, :git
  8. set :format, :pretty
  9. set :log_level, :debug
  10. # set :pty, true
  11. # set :linked_files, %w{config/database.yml}
  12. # set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}
  13. # set :default_environment, { path: "/opt/ruby/bin:$PATH" }
  14. # set :keep_releases, 5