PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/config/deploy.rb

https://bitbucket.org/acjaws/eaves
Ruby | 42 lines | 8 code | 13 blank | 21 comment | 0 complexity | 2b4ea50b890549a53757d04978eca832 MD5 | raw file
  1. `ssh-add`
  2. # config valid for current version and patch releases of Capistrano
  3. lock "~> 3.10.1"
  4. set :application, "Eaves"
  5. set :repo_url, "git@bitbucket.org:acjaws/eaves.git"
  6. # Default branch is :master
  7. # ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
  8. # Default deploy_to directory is /var/www/my_app_name
  9. set :deploy_to, "/home/deploy/eaves"
  10. # Default value for :format is :airbrussh.
  11. # set :format, :airbrussh
  12. # You can configure the Airbrussh format using :format_options.
  13. # These are the defaults.
  14. # set :format_options, command_output: true, log_file: "log/capistrano.log", color: :auto, truncate: :auto
  15. # Default value for :pty is false
  16. # set :pty, true
  17. # Default value for :linked_files is []
  18. append :linked_files, "config/database.yml", "config/secrets.yml", "config/facebook.yml", "config/email.yml"
  19. # Default value for linked_dirs is []
  20. append :linked_dirs, "log", "tmp/pids", "tmp/cache", "tmp/sockets", "public/system"
  21. # Default value for default_env is {}
  22. # set :default_env, { path: "/opt/ruby/bin:$PATH" }
  23. # Default value for local_user is ENV['USER']
  24. # set :local_user, -> { `git config user.name`.chomp }
  25. # Default value for keep_releases is 5
  26. # set :keep_releases, 5
  27. # Uncomment the following to require manually verifying the host key before first deploy.
  28. # set :ssh_options, verify_host_key: :secure
  29. set :passenger_restart_with_touch, true