This is a project inspired by Caphub. It expands on the concept and makes it into a framework for multi application deployment.
borgify
Sets up the following structure
my-deployer-package
├── cap
| ├── applications
| | ├── application1.rb
│ | └── application2.rb
| ├── initilizers
| | ├── initializer1.rb
│ | └── initializer2.rb
| └── recipies
| ├── recipe1.rb
│ └── recipe2.rb
├── Capfile
├── Gemfile
└── Gemfile.lock
# provides a performance report at the end of execution
# set :borg_performance_reports, true
# runs on :exit events when ctrl-c is hit
# set :borg_sigint_triggers_exit, true
require 'borg-rb'
# require any other borg gems here.
borgify plugin
Sets up the following structure
my-service-package
├── cap
| ├── initilizers
| | ├── initializer1.rb
│ | └── initializer2.rb
| └── recipies
| ├── recipe1.rb
│ └── recipe2.rb
├── my-service-package.gemspec
├── Gemfile
└── Gemfile.lock
- While working on this there was a realization that the if you write a "on :exit" event then make sure it is executable even if it is called when ctrl-c is hit.
Borg provides a application and stage config setup. One can define applications with the format.
application :app_name do
# do things needed to setup the application environment.
end
stage :app_name, :stage_name do
# do things for specific stage for the applications.
end
By default borg looks for application confi files in cap/applications and loads all those files. If multiple application and stage blocks with the same parameters are defined then all the blocks will be run for that application/stage.
The CLI enforces that all configs be specified at the start. Consider the command borg app1:stage1 app2 deploy
will result in config app1:stage1, all configs for app2 (1 config for each stage, if there is no stage it assumes the app is the only stage)
to be load and the deploy task be run against all of them.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Ruby Style Guidelines: We like this one https://github.com/styleguide/ruby