Heroku 找不到 facebook.yml 文件;到底是怎么回事?
我正在部署一个可以在 Heroku 本地运行的应用程序。我的 Heroku 日志产生以下错误:
/usr/ruby1.9.2/lib/ruby/1.9.1/syck.rb:145:in ‘初始化’:没有这样的文件或 目录- /app/2c325e9f-adb9-420e-b7d8-a80f8aa4c4e6/home/config/facebook.yml
我的 facebook.yml 文件位于 /config 目录中,格式如下:
development:
app_id
secret_key
test:
app_id
secret_key
production:
app_id
secret_key
I am deploying an app that works locally to heroku. My heroku logs produce the following error:
/usr/ruby1.9.2/lib/ruby/1.9.1/syck.rb:145:in
`initialize': No such file or
directory -
/app/2c325e9f-adb9-420e-b7d8-a80f8aa4c4e6/home/config/facebook.yml
My facebook.yml file is in the /config directory and is formatted as such:
development:
app_id
secret_key
test:
app_id
secret_key
production:
app_id
secret_key
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜你忘了……
之前
My guess is that you forgot to...
prior to
尽管 DigitalRoss 的答案有效,但并不总是最佳实践。
将 yaml 文件添加到存储库,您将敏感信息放入您的 git 帐户
留下安全问题(例如,如果代码在 github 或其他地方共享)。
这是 heroku 建议。
Althouh DigitalRoss answer works may not always be a best practice.
Adding yaml files to repository you put sensitive information into your git account
leaving security issues (eg. if code is shared in github or else).
Here's what heroku suggest.