vdot 0.1.0

Create your .env file using Vault.
Documentation

vdot

Build Status

Create your .env file using Vault.

Usage

vdot

Usage:
  vdot <path>...
  vdot -h | --help
  vdot --version

Options:
  -h --help     Show this screen.
  --version     Show version.
$ vault login
$ vault write secret/foo-bar NODE_ENV=production
$ vault write secret/fizz-buzz LOG_LEVEL=info
$ vdot secret/foo-bar secret/fizz-buzz
$ cat .env
NODE_ENV=production
LOG_LEVEL=info