direnvを使ってプロダクト毎に公開したくない環境変数を設定する
direnvとは
direnv is an extension for your shell. It augments existing shells with a new feature that can load and unload environment variables depending on the current directory.
direnv is an extension for your shell. It augments existing shells with a new feature that can load and unload environment variables depending on the current directory.
シェルの拡張機能ということで、.envrcというファイルを生成し、そこに環境変数を記述すると、このファイルがあるディレクトリ上でのみ記述した環境変数が有効になるという代物です。
インストール
homebrewで簡単にインストールできます。
$ brew install direnv
zshにパスを通します。
## direnv
export EDITOR="vi"
eval "$(direnv hook zsh)"
読ませます。
source ~/.zshrc
環境変数を設定したいプロダクトのディレクトリに移動して以下のコマンドを打つとviが起動するので、設定したい環境変数を設定します。
$ direnv editor .
export GOOGLE_CLIENT_ID=******************
export GOOGLE_CLIENT_SECRET=*****************
このようにしてみてから、ディレクトリ内と外でechoを使って環境変数が適応されているのとされていないのを確認してみてください。
Author And Source
この問題について(direnvを使ってプロダクト毎に公開したくない環境変数を設定する), 我々は、より多くの情報をここで見つけました https://qiita.com/Nedward/items/b11f79923bc2afce651a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .