Sha256: bfb2b07270c95d61cd25c106b867b514b2f7b638fdf30c4a57766460fb440f0c
Contents?: true
Size: 589 Bytes
Versions: 8
Compression:
Stored size: 589 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 # Cleanup after deploy set :keep_releases, 3 after "deploy", "deploy:cleanup"
Version data entries
8 entries across 8 versions & 1 rubygems