Created
May 22, 2018 08:06
-
-
Save nikukyugamer/2e3f55bebdf70d4bd4c36acb9b15beb2 to your computer and use it in GitHub Desktop.
config/deploy/development.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set :stage, :development | |
| set :branch, :development | |
| set :deploy_to, '/opt/FOOBAR' | |
| set :rails_env, 'development' | |
| server 'SEVER_ADDRESS(NAME)', user: 'USERNAME', roles: %w{web app db} | |
| set :ssh_options, { | |
| keys: [File.expand_path('USER_KEY')] | |
| } | |
| set :unicorn_pid, "#{shared_path}/tmp/pids/unicorn.development.pid" | |
| set :unicorn_config_path, "#{release_path}/config/unicorn.development.rb" | |
| set :bundle_without, 'production' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment