Sha256: 35036b0522db3d41bbd982b83fb823de64a17e590e636e2e465ab2118c1aa449

Contents?: true

Size: 844 Bytes

Versions: 4

Compression:

Stored size: 844 Bytes

Contents

task :set_railman_env do
  set :deploy_to, "/home/deploy/apps/#{fetch(:application)}"
  if fetch(:spa_application)
    set :deploy_spa_to, "/home/deploy/sites/#{fetch(:spa_application)}"
  end
  set :rbenv_home, '/home/deploy/.rbenv'
  set :environment, {path: "#{fetch(:rbenv_home)}/shims:#{fetch(:rbenv_home)}/bin:$PATH", rails_env: 'production'}

  SSHKit.config.command_map[:rake] = "#{fetch(:deploy_to)}/bin/rake"
  %w(ln cp service start restart stop status certbot).each do |cmd|
    SSHKit.config.command_map[cmd.to_sym] = "sudo #{cmd}"
  end
  SSHKit.config.command_map[:eye] = "#{fetch(:rbenv_home)}/shims/eye"
  SSHKit.config.command_map[:su_rm] = 'sudo rm'
end

before :setup, :set_railman_env
before :deploy, :set_railman_env
before :update, :set_railman_env
before :reset_server, :set_railman_env
before :remove, :set_railman_env

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
railman-deployment-1.1.3 lib/railman/tasks/set_railman_env.rake
railman-deployment-1.1.2 lib/railman/tasks/set_railman_env.rake
railman-deployment-1.1.1 lib/railman/tasks/set_railman_env.rake
railman-deployment-1.1.0 lib/railman/tasks/set_railman_env.rake