您好我已经从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
时,它仍然是空的!
答案 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/