https://qiita.com/toshichanapp/items/c5d76144bf6938207f4e
More than 3 years have passed since last update.
$ brew install direnv
~/.bashrc
に下記を追記 eval "$(direnv hook bash)"
$ source ~/.bashrc
.envrc
ファイルを作成する.envrc
に使いたい環境変数を下記のように記述する export 環境変数名=値
.envrc
を有効化する $ direnv allow .
.gitignore
に追記 .envrc
export PGHOST=localhost
export PGDATABASE=railsapp_development
export PGDATABASE_TEST=railsapp_test
export PGUSER=
export PGPASSWORD=
export PGPORT=
export SECRET_KEY_BASE=hogehoge
Why not register and get more from Qiita?