mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
96 lines
2.3 KiB
Ruby
96 lines
2.3 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, '/var/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.1'
|
|
|
|
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 Debian systemd scripts'
|
|
task :export do
|
|
on roles(:app) do |host|
|
|
log_path = shared_path.join('log')
|
|
environment_path = fetch(:foreman_env)
|
|
within release_path do
|
|
as :root do
|
|
execute :sudo, "foreman export initscript /etc/init.d/ -a #{fetch(:application)} -u #{host.user} -l #{log_path} -e #{environment_path}"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
desc 'Start the application services'
|
|
task :start do
|
|
on roles(:app) do |host|
|
|
as :root do
|
|
execute :start, fetch(:application)
|
|
end
|
|
end
|
|
end
|
|
|
|
desc 'Stop the application services'
|
|
task :stop do
|
|
on roles(:app) do |host|
|
|
as :root do
|
|
execute :stop, fetch(:application)
|
|
end
|
|
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
|
|
|
|
before 'deploy:publishing', 'foreman:export'
|
|
end
|