Sha256: 4cb94058895a7c11b58d2f201b555f37450ba69f8de0a4ca643dfb9689259cb2
Contents?: true
Size: 676 Bytes
Versions: 4
Compression:
Stored size: 676 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] %>" # Database # set :migrate_env, "migration" # Unicorn set :unicorn_workers, 1
Version data entries
4 entries across 4 versions & 1 rubygems