如何将变量传递到heroku for Rails 应用程序上的自定义database.yml 中?
我需要传递我在自定义 database.yml 中定义的变量。我正在加载要使用的database.yml,而不是heroku 覆盖的database.yml。
该变量在我的environments/development.rb 文件中确定并分配。
但我似乎无法让它正确分配。如果我手动编码它就可以了,但我不能这样做。
帮助?
I need to pass variables that I have defined in my custom database.yml. I am loading a database.yml to be used instead of the one that heroku overwrites with.
This variable is determined and assigned in my envirionments/production.rb file.
But I can't seem to get it to assign correctly. It works if I hand-code it, but I cannot do that.
Help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试以下语法:
不幸的是,您无法将普通字符串与变量连接起来。
Try following syntax:
Unfortunately, you cannot join normal string with a variable.
它可以从环境中放入标签
It works to put in tags from an environment