Commit 3f4b36c1 by John Doe

added aws deploy point

parent c16c4a0b
......@@ -30,5 +30,14 @@ production:
<<: *default
database: db/production.sqlite3
aws:
adapter: postgresql
database: ENV['RDS_DATABASE']
host: ENV['RDS_HOST']
pool: 5
encoding: unicode
username: ENV['RDS_USERNAME']
password: ENV['RDS_PASSWORD']
cucumber:
<<: *test
......@@ -4,18 +4,13 @@ lock "3.8.1"
set :application, "lumen-api"
set :repo_url, "git@git.wattsworth.net:wattsworth/control-api.git"
set :rbenv_type, :user
set :rbenv_prefix, "RBENV_ROOT=#{fetch(:rbenv_path)} RBENV_VERSION=#{fetch(:rbenv_ruby)} #{fetch(:rbenv_path)}/bin/rbenv exec"
set :rbenv_map_bins, %w{rake gem bundle ruby rails}
set :rbenv_roles, :all # default value
set :passenger_restart_with_touch, true
# Default branch is :master
# ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
# Default deploy_to directory is /var/www/my_app_name
set :deploy_to, "/opt/rails/lumen"
# Default value for :format is :airbrussh.
# set :format, :airbrussh
......@@ -28,7 +23,7 @@ set :deploy_to, "/opt/rails/lumen"
# set :pty, true
# Default value for :linked_files is []
append :linked_files, "config/secrets.yml", "db/production.sqlite3"
append :linked_files, "config/secrets.yml"
# Default value for linked_dirs is []
append :linked_dirs, "log", "tmp/pids", "tmp/cache", "tmp/sockets"
......
# server-based syntax
# ======================
# Defines a single server with a list of roles and multiple properties.
# You can define all roles on a single server, or split them:
server "portal.wattsworth.net", user: "rails", roles: %w{app db web}, port: 22
# server "example.com", user: "deploy", roles: %w{app web}, other_property: :other_value
# server "db.example.com", user: "deploy", roles: %w{db}
set :deploy_to, "/opt/api"
# role-based syntax
# ==================
# Defines a role with one or multiple servers. The primary server in each
# group is considered to be the first unless any hosts have the primary
# property set. Specify the username and a domain or IP for the server.
# Don't use `:all`, it's a meta role.
# role :app, %w{deploy@example.com}, my_property: :my_value
# role :web, %w{user1@primary.com user2@additional.com}, other_property: :other_value
# role :db, %w{deploy@example.com}
# Configuration
# =============
# You can set any configuration variable like in config/deploy.rb
# These variables are then only loaded and set in this stage.
# For available Capistrano configuration variables see the documentation page.
# http://capistranorb.com/documentation/getting-started/configuration/
# Feel free to add new variables to customise your setup.
# Custom SSH Options
# ==================
# You may pass any option but keep in mind that net/ssh understands a
# limited set of options, consult the Net::SSH documentation.
# http://net-ssh.github.io/net-ssh/classes/Net/SSH.html#method-c-start
#
# Global options
# --------------
set :ssh_options, {
keys: %w(/Users/jdonnal/.ssh/id_rsa),
forward_agent: true,
auth_methods: %w(publickey)
}
#
# The server-based syntax can be used to override options:
# ------------------------------------
# server "example.com",
# user: "user_name",
# roles: %w{web app},
# ssh_options: {
# user: "user_name", # overrides user setting above
# keys: %w(/home/user_name/.ssh/id_rsa),
# forward_agent: false,
# auth_methods: %w(publickey password)
# # password: "please use keys"
# }
......@@ -7,8 +7,14 @@ server "beta.wattsworth.net", user: "rails", roles: %w{app db web}, port: 2222
# server "example.com", user: "deploy", roles: %w{app web}, other_property: :other_value
# server "db.example.com", user: "deploy", roles: %w{db}
set :rbenv_type, :user
set :rbenv_prefix, "RBENV_ROOT=#{fetch(:rbenv_path)} RBENV_VERSION=#{fetch(:rbenv_ruby)} #{fetch(:rbenv_path)}/bin/rbenv exec"
set :rbenv_map_bins, %w{rake gem bundle ruby rails}
set :rbenv_roles, :all # default value
append :linked_files, "db/production.sqlite3"
set :deploy_to, "/opt/rails/lumen"
# role-based syntax
# ==================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment