Sha256: c0476975c26ec82345c3e64a13c2d62d839902575549030e9ead8fc727a04783
Contents?: true
Size: 511 Bytes
Versions: 9
Compression:
Stored size: 511 Bytes
Contents
# Set server stages set :stages, %w(production staging) set :default_stage, "staging" require 'capistrano/ext/multistage' # Server-side information. set :application, "<%= data[:application_name] %>" set :user, "deploy" set :deploy_to, "/home/#{user}/applications/#{application}" # Repository (if any) configuration. set :deploy_via, :remote_cache set :repository, "<%= data[:repo] %>" # set :git_enable_submodules, 1 # Database # set :migrate_env, "migration" # Unicorn set :unicorn_workers, 1
Version data entries
9 entries across 9 versions & 1 rubygems