1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/config/deploy.rb
2015-08-19 18:05:15 +01:00

80 lines
1.9 KiB
Ruby

# config valid only for current version of Capistrano
lock '3.4.0'
set :application, 'danbarberphoto'
set :repo_url, 'git@github.com:danbee/danbarberphoto.git'
# 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, '~/apps/danbarberphoto'
# Default value for :scm is :git
# set :scm, :git
# Default value for :format is :pretty
# set :format, :pretty
# Default value for :log_level is :debug
# set :log_level, :debug
# Default value for :pty is false
# set :pty, true
# Default value for :linked_files is []
set :linked_files, fetch(:linked_files, []).push('config/database.yml', '.env')
# 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
#
set :rbenv_type, :user
set :rbenv_ruby, '2.2.2'
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
namespace :foreman do
desc 'Export the Procfile to systemd'
task :export do
on roles(:app) do |host|
within current_path do
execute :pwd
execute :sudo, :foreman, 'export --app danbarberphoto --user danbarber systemd /etc/systemd/system'
end
end
end
desc 'Start the application services'
task :start do
on roles(:app) do |host|
execute :foreman, :start
end
end
desc 'Restart the application services'
task :restart do
on roles(:app) do |host|
as :root do
execute :service, "#{fetch(:application)} start || service #{fetch(:application)} restart"
end
end
end
end