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 1 year has passed since last update.

Heroku上にYoutubeAPIキーを設定する

Posted at

Railsでアプリを作成し、HerokuにデプロイしたときにAPIが正常に動作しなかったので、修正した過程を記事に残します。

Heroku上で変数を設定する

  1. Herokuダッシュボードにアクセスし、アプリを選択する
  2. Settingタブに移動する
  3. Config VarsのReveal Config Varsボタンを押す
  4. 環境変数一覧が表示されるので、Keyに変数名を、VALUEに値を入力してaddで保存をする

Heroku上での変数の設定は以上!!

Rails側で変数を使用する

Rails側で使用する時も簡単で以下のように指定することで使用することができる

ENV['変数名']

参考にした記事

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?