2
1

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.

【Express】.envファイルとHerokuの環境変数を同期する方法

Posted at

#プログラミング勉強日記
2021年2月8日

#前提条件

  • すでにHerokuに環境変数が設定されている

まだ環境変数を設定していない場合は、【Heroku】Herokuで環境変数を設定する方法 から環境変数を設定してみてください。

#Herokuの環境変数と.envファイルを同期する方法

##1. heroku-configをインストールする

$ heroku plugins:install heroku-config

##2. Herokuの環境変数を.envに同期する

$ heroku config:pull
値を上書きしたい場合
$ heroku config:pull --overwrite
.envを編集して環境変数を上書きしたい場合
$ heroku config:push
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?