Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
wattsworth
/
lumen-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3f4b36c1
authored
Oct 10, 2017
by
John Doe
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
added aws deploy point
parent
c16c4a0b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
79 additions
and
7 deletions
config/database.yml
config/deploy.rb
config/deploy/aws.rb
config/deploy/production.rb
config/database.yml
View file @
3f4b36c1
...
@@ -30,5 +30,14 @@ production:
...
@@ -30,5 +30,14 @@ production:
<<
:
*default
<<
:
*default
database
:
db/production.sqlite3
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
:
cucumber
:
<<
:
*test
<<
:
*test
config/deploy.rb
View file @
3f4b36c1
...
@@ -4,18 +4,13 @@ lock "3.8.1"
...
@@ -4,18 +4,13 @@ lock "3.8.1"
set
:application
,
"lumen-api"
set
:application
,
"lumen-api"
set
:repo_url
,
"git@git.wattsworth.net:wattsworth/control-api.git"
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
set
:passenger_restart_with_touch
,
true
# Default branch is :master
# Default branch is :master
# ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
# ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
# Default deploy_to directory is /var/www/my_app_name
# Default deploy_to directory is /var/www/my_app_name
set
:deploy_to
,
"/opt/rails/lumen"
# Default value for :format is :airbrussh.
# Default value for :format is :airbrussh.
# set :format, :airbrussh
# set :format, :airbrussh
...
@@ -28,7 +23,7 @@ set :deploy_to, "/opt/rails/lumen"
...
@@ -28,7 +23,7 @@ set :deploy_to, "/opt/rails/lumen"
# set :pty, true
# set :pty, true
# Default value for :linked_files is []
# 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 []
# Default value for linked_dirs is []
append
:linked_dirs
,
"log"
,
"tmp/pids"
,
"tmp/cache"
,
"tmp/sockets"
append
:linked_dirs
,
"log"
,
"tmp/pids"
,
"tmp/cache"
,
"tmp/sockets"
...
...
config/deploy/aws.rb
0 → 100644
View file @
3f4b36c1
# 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"
# }
config/deploy/production.rb
View file @
3f4b36c1
...
@@ -7,8 +7,14 @@ server "beta.wattsworth.net", user: "rails", roles: %w{app db web}, port: 2222
...
@@ -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 "example.com", user: "deploy", roles: %w{app web}, other_property: :other_value
# server "db.example.com", user: "deploy", roles: %w{db}
# 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
# role-based syntax
# ==================
# ==================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment