Project

bowler

0.01
No commit activity in last 3 years
No release in over 3 years
A wrapper for large Foreman-managed apps with dependent processes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.14.0
~> 0.9.2.2
~> 2.14.7

Runtime

>= 0.35.0
 Project Readme

Bowler

Bowler manages Foreman process dependencies for large applications.

Bowler wraps the foreman start command with bowl <processes>, calculates the dependencies required, and automatically enables and disables the relevant processes in Foreman.

Installation

Install from the command line:

gem install bowler

Usage

Bowler reads from a Pinfile to find your process dependencies. Declaring dependencies is easy:

process :app => [:database, :tiles]
process :api => :database

You can specify a global dependency too.

dependency :database

process :app => :tiles
process :api

To run a process, use the bowl executable:

bowl app

You can run multiple processes at once:

bowl app api

Releasing the gem

  • Update the version in lib/bowler/version.rb
  • Commit and tag the new release version
  • Update CHANGELOG.md
  • gem build bowler.gemspec
  • gem push <artefact>.gem

License

MIT License