Advertisement
leo91000

Untitled

Dec 27th, 2017
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. # config valid for current version and patch releases of Capistrano
  2. lock "~> 3.10.1"
  3.  
  4. set :application, "hiddenappnameforpastebin"
  5. set :repo_url, 'hiddenrepoforpastebin'
  6.  
  7. # Default branch is :master
  8. # ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
  9.  
  10. # Default deploy_to directory is /var/www/my_app_name
  11. set :deploy_to, "/home/deploy/hiddenappnameforpastebin"
  12.  
  13. # Default value for :format is :airbrussh.
  14. # set :format, :airbrussh
  15.  
  16. # You can configure the Airbrussh format using :format_options.
  17. # These are the defaults.
  18. # set :format_options, command_output: true, log_file: "log/capistrano.log", color: :auto, truncate: :auto
  19.  
  20. # Default value for :pty is false
  21. # set :pty, true
  22.  
  23. # Default value for :linked_files is []
  24. append :linked_files, "config/database.yml", "config/secrets.yml"
  25.  
  26. # Default value for linked_dirs is []
  27. append :linked_dirs, "log", "tmp/pids", "tmp/cache", "tmp/sockets", "public/system", "public/uploads"
  28.  
  29. # Default value for default_env is {}
  30. # set :default_env, { path: "/opt/ruby/bin:$PATH" }
  31.  
  32. # Default value for local_user is ENV['USER']
  33. # set :local_user, -> { `git config user.name`.chomp }
  34.  
  35. # Default value for keep_releases is 5
  36. # set :keep_releases, 5
  37.  
  38. # Uncomment the following to require manually verifying the host key before first deploy.
  39. # set :ssh_options, verify_host_key: :secure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement