0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

railsでENVを使用する

Posted at

パターンは二つあると思います。

.envファイルを作成する

.envファイルを作成

.envファイルの記述

あとはcontrollerなどで読み込めばOKです。

こっちの方が簡単です。
注意点はgitignoreを記述しないとgitにプッシュしたときに載ってしまうのでセキュリティ的に良くないです。

環境変数を設定する

vim ~/.zshrc

このコマンドで環境変数の設定状況が表示されるので、
iを押してインサートモードに。
変数を記述してesc→:→w→qでエンターを押す。

export AWS_ACCESS_KEY_ID=
#こんな感じで記述
source ~/.zshrc

を実行

デメリットは設定した変数はその環境でしか使えないということ。
チーム開発では向いてないかな?

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?