Create your .env
file using Vault.
``` vdot
Usage:
vdot
Options: -h --help Show this screen. --version Show version. ```
shell
$ 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