Sha256: 1199433da614debcf6eb90dcf3458f03798613b6ba75e4ea02a5189e6e580f9a
Contents?: true
Size: 910 Bytes
Versions: 19
Compression:
Stored size: 910 Bytes
Contents
== Set Up * Set up repo on eden Required Files: * .rvmrc * Gemfile * Gemfile.lock * config/database.yml * .git/config * config/unicorn.rb === Setting Up GitConfig [remote "production"] url = git@eden:ors/deployment.git push = refs/heads/master:refs/heads/production >> git push production # updates remote production branch without local branch === Setting up RVM On your ruby servers you should create a .rvmrc in the home directory of the user running unicorn. rvm_install_on_use_flag=1 rvm_gemset_create_on_use_flag=1 rvm_trust_rvmrcs_flag=1 === Required gems * rake * bundler Gemfile group :production, :demo do gem 'unicorn' gem 'mysql2' gem 'dalli' gem 'exception_notification', :git => "git://github.com/rails/exception_notification", :branch => "master", :require => "exception_notifier" end === Usage run `ors help`
Version data entries
19 entries across 19 versions & 1 rubygems