summaryrefslogtreecommitdiffstats
path: root/config/deploy.rb
blob: 53b4fb3d0e9fb5c865a8afd9cd321409576e5475 (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
# config valid only for current version of Capistrano
lock '3.6.0'

set :application, 'registration'
set :repo_url, 'https://github.com/snake66/norsk-urskog-registrations.git'
set :deploy_to, '/home/norskurskog/www/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