mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-24 13:58:56 -05:00
pumactl restart does not make the worker re-read their working directory. Hence new code is never used... Use stop/start via systemd again.
49 lines
1.8 KiB
Ruby
49 lines
1.8 KiB
Ruby
require 'mina/rails'
|
|
require 'mina/git'
|
|
|
|
OSEM_DEPLOY_DOMAIN = ENV.fetch('OSEM_DEPLOY_DOMAIN', 'dale.infra.opensuse.org')
|
|
OSEM_DEPLOY_PORT = ENV.fetch('OSEM_DEPLOY_PORT', '22')
|
|
OSEM_DEPLOY_USER = ENV.fetch('OSEM_DEPLOY_USER', 'osem')
|
|
OSEM_DEPLOY_DIR = ENV.fetch('OSEM_DEPLOY_DIR', '/home/osem/events')
|
|
OSEM_DEPLOY_REPO = ENV.fetch('OSEM_DEPLOY_REPO', 'https://github.com/openSUSE/osem.git')
|
|
OSEM_DEPLOY_BRANCH = ENV.fetch('OSEM_DEPLOY_BRANCH', 'master')
|
|
|
|
set :application_name, 'osem'
|
|
set :domain, OSEM_DEPLOY_DOMAIN
|
|
set :user, OSEM_DEPLOY_USER
|
|
set :port, OSEM_DEPLOY_PORT
|
|
set :deploy_to, OSEM_DEPLOY_DIR
|
|
set :repository, OSEM_DEPLOY_REPO
|
|
set :branch, OSEM_DEPLOY_BRANCH
|
|
|
|
# Shared dirs and files will be symlinked into the app-folder by the 'deploy:link_shared_paths' step.
|
|
# Some plugins already add folders to shared_dirs like `mina/rails` add `public/assets`, `vendor/bundle` and many more
|
|
# run `mina -d` to see all folders and files already included in `shared_dirs` and `shared_files`
|
|
set :shared_dirs, fetch(:shared_dirs, []).push('public/system', '.bundle', 'tmp/pids')
|
|
set :shared_files, fetch(:shared_files, []).push('.env.production')
|
|
|
|
desc "Deploys the current version to the server."
|
|
task :deploy do
|
|
deploy do
|
|
# Put things that will set up an empty directory into a fully set-up
|
|
# instance of your project.
|
|
invoke :'git:clone'
|
|
invoke :'deploy:link_shared_paths'
|
|
invoke :'bundle:install'
|
|
invoke :'rails:db_migrate'
|
|
invoke :'rails:assets_precompile'
|
|
invoke :'deploy:cleanup'
|
|
|
|
on :launch do
|
|
in_path(fetch(:current_path)) do
|
|
command %{sudo systemctl restart osem}
|
|
command %{sudo systemctl restart osem-dj}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# For help in making your deploy script, see the Mina documentation:
|
|
#
|
|
# - https://github.com/mina-deploy/mina/tree/master/docs
|