Skip to content

localhots/mina-reboot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mina Reboot

Generates cron @reboot task every time you deploy with Mina, so your app will start automatically in case of server reboot.

Installation

Add this line to your application's Gemfile:

gem 'mina-reboot'

Usage

Add these lines to your application's deploy config:

require 'mina/reboot'

set :on_reboot, -> {
  # Tasks needed to start application
  invoke 'unicorn:start'
  invoke 'sidekiq:start'
}

task :deploy => :environment do
  # ...
  # Deploy commands
  # ...
  invoke 'reboot:save_startup_script'
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

Generates cron @reboot task from Mina deploy config

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages