summaryrefslogtreecommitdiffstats
path: root/config/deploy.rb
blob: 2a835d6a87f564c160b8b40d42090774c7cf5804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# config valid only for current version of Capistrano
lock '3.4.0'

set :application, 'regform'
set :repo_url, 'https://github.com/snake66/norsk-urskog-registrations.git'
set :passenger_restart_with_touch, true
set :rvm_ruby_version, '2.2.3'
set :deploy_to, '/usr/local/www/norsk-urskog/registration'
set :linked_files, fetch(:linked_files, []).push('config.yml')

# Default value for linked_dirs is []
set :linked_dirs, fetch(:linked_dirs, []).push('public/uploads')

# 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