Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

capistrano3-foreman-precogs

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

capistrano3-foreman-precogs

  • 0.4
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

Capistrano::Foreman

Gem Version

Capistrano V3 for foreman

WIP

There be dragons, proceed at your own risk.

Installation

Add this line to your application's Gemfile:

gem 'capistrano3-foreman-precogs'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano3-foreman-precogs

Usage

Require in Capfile to use the default task:

require 'capistrano/foreman'

###Export Procfile to upstart###

This task will be run before deploy:restart as part of Capistrano's default deploy, or can be run in isolation with:

cap production foreman:export

NOTE

In order for foreman to export to upstart your deploy user must have sudoer privileges

###Options###

Custom ENVIRONMENT variables for foreman (see here).

set :foreman_env,  '/remote/path/to/your.env'         # Default none 

##The Twelve Factor App##

(Treat backing services as attached resources) by using ENV variables for your configuration.

database.yml

default: &default
  adapter: mysql2
  host: <%= ENV['DATABASE_HOST'] %>
  username: <%= ENV['DATABASE_USERNAME'] %>
  password: <%= ENV['DATABASE_PASSWORD'] %>
  encoding: utf8
  reconnect: true

staging:
  <<: *default
  database: app_web_staging

production:
  <<: *default
  database: app_web_production

deploy.rb

set :foreman_env,     '/home/deploy/.pam_environment'

.pam_environment

DATABASE_HOST=database.example.com
DATABASE_USERNAME=user
DATABASE_PASSWORD=password
RAILS_ENV=staging

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 new Pull Request

FAQs

Package last updated on 27 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc