1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/config/deploy/production.rb
2019-07-13 01:25:52 +05:00

16 lines
328 B
Ruby

# frozen_string_literal: true
server 'partynest.libertarian-party.com', roles: %w[web app db]
append :linked_dirs, '.bundle'
namespace :deploy do
after :finished, :change_group
desc 'Change group'
task :change_group do
on roles(:all) do
execute :chown, '-R', ':partynest', '/opt/partynest'
end
end
end