Heroku 找不到 facebook.yml 文件;到底是怎么回事?

发布于 2024-10-19 01:50:47 字数 419 浏览 3 评论 0原文

我正在部署一个可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

っ左 2024-10-26 01:50:47

我猜你忘了……

git add facebook.yml
git commit -m 'new file' .

之前

git push heroku master

My guess is that you forgot to...

git add facebook.yml
git commit -m 'new file' .

prior to

git push heroku master
我早已燃尽 2024-10-26 01:50:47

尽管 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文