heroku config:推送不添加环境变量

时间:2015-01-12 10:10:09

标签: node.js heroku foreman

您好我已经从heroku tutorial完成了以下操作。

 heroku plugins:install git://github.com/ddollar/heroku-config.git
 heroku config:push --overwrite

我的.env文件位于项目目录的根目录

GOOGLE_RETURN_URL = http://example.herokuapp.com/auth/google/return
GOOGLE_REALM = http://example.herokuapp.com/

我还将--overwrite标志设置为this answer suggested

然而,当我回复我的heroku config时,它仍然是空的!

1 个答案:

答案 0 :(得分:1)

问题是.env文件中的空格。删除" ="两侧的空格。并且该插件将起作用。

变化:

GOOGLE_RETURN_URL = http://example.herokuapp.com/auth/google/return
GOOGLE_REALM = http://example.herokuapp.com/

要:

GOOGLE_RETURN_URL=http://example.herokuapp.com/auth/google/return
GOOGLE_REALM=http://example.herokuapp.com/