diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-05T23·26+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-05T23·26+0000 |
commit | 138070f3f6492cdd45acf17ae4e1d25e30de7653 (patch) | |
tree | ed40485a6846fed2aff290603e8c480472f9ca44 /monzo_ynab/.envrc | |
parent | 1772408c3989c86044ee97ca9bd51ddf509adb47 (diff) |
Inherit parent's .envrc variables
I discovered direnv's convenient `source_up` function today. I needed it to inherit the values defined in ~/briefcase/.envrc, and it's working exactly as I expected it would. What a fine piece of software direnv is.
Diffstat (limited to 'monzo_ynab/.envrc')
-rw-r--r-- | monzo_ynab/.envrc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/monzo_ynab/.envrc b/monzo_ynab/.envrc new file mode 100644 index 000000000000..265077343800 --- /dev/null +++ b/monzo_ynab/.envrc @@ -0,0 +1,5 @@ +# source_up traversing up directories until it finds the nearest .envrc file, +# which it uses to extend the environment in this .envrc. +source_up +export client_id="$(pass show finance/monzo/client-id)" +export client_secret="$(pass show finance/monzo/client-secret)" |