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?

Railsで環境変数を設定する

Posted at

1. gemインストール

gemfile
gem 'dotenv-rails'

※ある記事で、 gem 'dotenv'と記載があったが、これでは上手くインストールできないので注意。

2. 環境変数を設定する

リポジトリの一番上の階層で、.envファイルを手動作成

以下のように設定したい環境変数を設定

.env
ID=123a

''シングルクオーテーションは不要。key=value形式で良い。

3. サーバ再起動

環境変数はサーバ起動時に読み込まれる。
そのため、サーバ起動しているのであれば、再起動する。

4. 環境変数の確認

rails c でコンソールを起動し、以下の形式で確認ができる。

コンソール
irb(main):001> ENV["ID"]
=> 123a
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?