Show, set and delete env vars in your .env remote file with Capistrano 3.
Add this line to your application's Gemfile:
gem 'capistrano-dotenv-tasks', github: 'adisos/capistrano-dotenv-tasks'And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-dotenv-tasks
Require it in your Capfile :
require 'capistrano/dotenv/tasks'Then use it from the cap command.
$ cap production config:show
$ cap production config:set VARNAME=value
$ cap production config:remove key=VARNAME
- Fork it ( https://github.com/glyph-fr/capistrano-dotenv-tasks/fork )
- 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 a new Pull Request
MIT