podemos-info/participa2

View on GitHub
config/deploy/production.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# server-based syntax
# ======================
# Defines a single server with a list of roles and multiple properties.
# You can define all roles on a single server, or split them:

server ENV["PRODUCTION_SERVER_MASTER_HOST"], port: ENV["PRODUCTION_SERVER_MASTER_PORT"], user: ENV["PRODUCTION_USER"], roles: %w(master app db web)
server ENV["PRODUCTION_SERVER_SLAVE_HOST"], port: ENV["PRODUCTION_SERVER_SLAVE_PORT"], user: ENV["PRODUCTION_USER"], roles: %w(slave app web)

set :rails_env, :production

# Use RVM system installation
set :rvm_type, :system
set :rvm_custom_path, "/usr/share/rvm"
set :branch, "master"

# Restart hutch daemon
on roles(:master) do
  after "deploy:publishing", "systemd:hutch:restart"
end
after "deploy:publishing", "systemd:puma:restart"