Project

ship_it

0.0
No commit activity in last 3 years
No release in over 3 years
Dashboard to manage capistrano deploys
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

ShipIt

ShipIt is a customizeable rails app that manages deployments to environments from git branches. Not only can it do one click deploys, but it can also save your log files and keep track of the changes deployed to each environment.

Getting started

To initialize a ship_it application:

# install the gem
gem install `ship_it`

# initialize a project directory
ship_it new [PROJECT_NAME]

# set up your databases
ship_it init

# run the server
ship_it start

# run the deployment runner
ship_it runner

Authentication

ship_it uses OmniAuth for authentication. To customize, you can configure within lib/ship_it/railtie.rb in your project directory.

module ShipIt
  class Railtie < ::Rails::Railtie

    initializer "omniauth" do |app|
      app.config.middleware.use OmniAuth::Builder do
        provider :developer unless Rails.env.production?
        provider :github, [GITHUB_CLIENT_ID], [GITHUB_SECRET_KEY]
      end
    end

  end
end

Any OmniAuth strategy is valid as long as it provides a uid and a name.