0.01
No release in over 3 years
Low commit activity in last 3 years
capistrano with environments
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Build Status Dependency Status Coverage Status

Capistrano::Env

Capistrano with Env via file

Installation

Add this line to your application's Gemfile:

gem 'capistrano-env'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-env

Usage

1. set env names in deploy.rb

in Capfile

require 'capistrano/env'

in deploy.rb

# New
set :capenv, ->(env) {
  env.add /^MYAPP_/
  env.add /^MYAPP_/ do |key|
     key.gsub /^MYAPP_/, '' # replace keyname like MYAPP_DATABASE_URL => DATABASE_URL
  end
  env.add 'UNICORN_PROCESSES'
  env.add 'HOGE', 'hage'
  env.filemode = 0644 #=> default is 0640.
}

2. deploy

bundle exec cap production deploy
  • automaticaly create #{current_path}/.env
  • automaticaly load #{current_path}/.env if you use dotenv-rails
    • you should load manualy in other framework
  • you can use ENV['ENV_NAME'] in application

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