Sha256: 7357ffb2b2b3de3a9b345f5d8659d97264cb6d729efe7a9c7449a7ada606caae
Contents?: true
Size: 611 Bytes
Versions: 21
Compression:
Stored size: 611 Bytes
Contents
set :stage, :production set :branch, "master" # used in case we're deploying multiple versions of the same # app side by side. Also provides quick sanity checks when looking # at filepaths set :full_app_name, "#{fetch(:application)}_#{fetch(:stage)}" server '192.168.33.10', user: 'deploy', roles: %w{web app db}, primary: true set :deploy_to, "/home/#{fetch(:deploy_user)}/apps/#{fetch(:full_app_name)}" # dont try and infer something as important as environment from # stage name. set :rails_env, :production # whether we're using ssl or not, used for building nginx # config file set :enable_ssl, false
Version data entries
21 entries across 21 versions & 1 rubygems