Sha256: 1e88f8cb6320d68bf62d6ef9a16332bc4d42631942edd127ba0d254574277de3
Contents?: true
Size: 719 Bytes
Versions: 5
Compression:
Stored size: 719 Bytes
Contents
# Servers and their roles. server "<%= data[:target_server] %>", :web, :app, :db, primary: true # 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 :branch, "production" # Optional, defaults to master # set :remote, "negroku" # Optional, defaults to origin # set :git_enable_submodules, 1 # Web server configuration set :domains, "<%= data[:domains] %>" # Rails # set :rails_env, "production" # Database # set :migrate_env, "migration" # Unicorn set :unicorn_workers, 1
Version data entries
5 entries across 5 versions & 1 rubygems