0
2

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.

【初心者】環境変数設定-dotenv-rails-

Posted at

##環境変数とは
環境変数とは、Githubにアップロードすることができない情報を入れておく箱のようなものです。
これにより、アプリケーションに直接パスワードなどを記述しなくとも、
OSからデータを渡す事で、情報漏洩の心配なく、アプリを稼働させる事ができます。

##設定方法
#####gemのインストール

Gemfile
gem 'dotenv-rails'
$ bundle install

#####.envファイル作成
Gemfileが置いてあるルートディレクトリに
.envファイルを作成

#####環境変数作成

KEY='*******' #使用したいキーやパスワードを
SECRET_KEY='*******'

呼び出す時は

ENV['KEY']

とすれば呼び出せます。

#####Git管理下から除外

.gitignore
/.env

これを忘れると情報が漏洩してしまうので忘れずに必ず設定してください。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?