summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Capfile12
-rw-r--r--Gemfile7
-rw-r--r--Gemfile.lock26
-rw-r--r--config/deploy.rb33
-rw-r--r--config/deploy/production.rb1
-rw-r--r--config/deploy/staging.rb61
6 files changed, 140 insertions, 0 deletions
diff --git a/Capfile b/Capfile
new file mode 100644
index 0000000..a58bcc2
--- /dev/null
+++ b/Capfile
@@ -0,0 +1,12 @@
+# Load DSL and set up stages
+require 'capistrano/setup'
+
+# Include default deployment tasks
+require 'capistrano/deploy'
+
+require 'capistrano/rvm'
+require 'capistrano/bundler'
+require 'capistrano/passenger'
+
+# Load custom tasks from `lib/capistrano/tasks` if you have any defined
+Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
diff --git a/Gemfile b/Gemfile
index ac0a0df..dffb3f0 100644
--- a/Gemfile
+++ b/Gemfile
@@ -12,3 +12,10 @@ group :development, :test do
gem "capybara"
gem "selenium-webdriver"
end
+
+group :development do
+ gem "capistrano"
+ gem "capistrano-bundler"
+ gem "capistrano-passenger"
+ gem "capistrano-rvm"
+end
diff --git a/Gemfile.lock b/Gemfile.lock
index 326223e..106561f 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -2,6 +2,18 @@ GEM
remote: https://rubygems.org/
specs:
byebug (6.0.2)
+ capistrano (3.4.0)
+ i18n
+ rake (>= 10.0.0)
+ sshkit (~> 1.3)
+ capistrano-bundler (1.1.4)
+ capistrano (~> 3.1)
+ sshkit (~> 1.2)
+ capistrano-passenger (0.1.1)
+ capistrano (~> 3.0)
+ capistrano-rvm (0.1.2)
+ capistrano (~> 3.0)
+ sshkit (~> 1.2)
capybara (2.5.0)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
@@ -10,13 +22,18 @@ GEM
xpath (~> 2.0)
childprocess (0.5.6)
ffi (~> 1.0, >= 1.0.11)
+ colorize (0.7.7)
diff-lcs (1.2.5)
ffi (1.9.10)
+ i18n (0.7.0)
mail (2.6.3)
mime-types (>= 1.16, < 3)
mime-types (2.6.2)
mini_portile (0.6.2)
multi_json (1.11.2)
+ net-scp (1.2.1)
+ net-ssh (>= 2.6.5)
+ net-ssh (3.0.1)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
pdf-core (0.6.0)
@@ -28,6 +45,7 @@ GEM
rack
rack-test (0.6.3)
rack (>= 1.0)
+ rake (10.4.2)
rspec (3.3.0)
rspec-core (~> 3.3.0)
rspec-expectations (~> 3.3.0)
@@ -53,6 +71,10 @@ GEM
tilt (>= 1.3, < 3)
sinatra-url-for (0.2.2.1)
sinatra (>= 0.9.1.1)
+ sshkit (1.7.1)
+ colorize (>= 0.7.0)
+ net-scp (>= 1.1.2)
+ net-ssh (>= 2.8.0)
tilt (2.0.1)
ttfunk (1.4.0)
websocket (1.2.2)
@@ -64,6 +86,10 @@ PLATFORMS
DEPENDENCIES
byebug
+ capistrano
+ capistrano-bundler
+ capistrano-passenger
+ capistrano-rvm
capybara
mail
prawn
diff --git a/config/deploy.rb b/config/deploy.rb
new file mode 100644
index 0000000..d4cae8c
--- /dev/null
+++ b/config/deploy.rb
@@ -0,0 +1,33 @@
+# config valid only for current version of Capistrano
+lock '3.4.0'
+
+set :application, 'regform'
+set :repo_url, 'git@example.com:me/my_repo.git'
+set :passenger_restart_with_touch, true
+set :rvm_ruby_version, '2.2.3'
+set :deploy_to, '/usr/local/www/norsk-urskog/registration'
+
+# Default value for :linked_files is []
+# set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml')
+
+# Default value for linked_dirs is []
+# set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')
+
+# Default value for default_env is {}
+# set :default_env, { path: "/opt/ruby/bin:$PATH" }
+
+# Default value for keep_releases is 5
+# set :keep_releases, 5
+
+namespace :deploy do
+
+ after :restart, :clear_cache do
+ on roles(:web), in: :groups, limit: 3, wait: 10 do
+ # Here we can do anything such as:
+ # within release_path do
+ # execute :rake, 'cache:clear'
+ # end
+ end
+ end
+
+end
diff --git a/config/deploy/production.rb b/config/deploy/production.rb
new file mode 100644
index 0000000..ee597c4
--- /dev/null
+++ b/config/deploy/production.rb
@@ -0,0 +1 @@
+server 'volse.anduin.net', user: 'deploy', roles: %w{app db web}
diff --git a/config/deploy/staging.rb b/config/deploy/staging.rb
new file mode 100644
index 0000000..4fc06fa
--- /dev/null
+++ b/config/deploy/staging.rb
@@ -0,0 +1,61 @@
+# 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 'example.com', user: 'deploy', roles: %w{app db web}, my_property: :my_value
+# server 'example.com', user: 'deploy', roles: %w{app web}, other_property: :other_value
+# server 'db.example.com', user: 'deploy', roles: %w{db}
+
+
+
+# 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(/home/rlisowski/.ssh/id_rsa),
+# forward_agent: false,
+# auth_methods: %w(password)
+# }
+#
+# 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'
+# }