"Heroku local -f Procfile.dev" 推荐后如何定位 Gemfile 或 bundle

How to locate Gemfile or bundle after "Heroku local -f Procfile.dev" commend

我正在按照 Heroku 博客文章中的说明进行操作:https://blog.heroku.com/a-rock-solid-modern-web-stack,在我需要为 Heroku 设置 Procfile.dev 的部分。

该文件需要放在我的 "client"(React Web Front)和 "api"(Rails API 后端)文件夹所在的应用程序的根目录下.所以,当我插入命令时:

"heroku local -f Procfile.dev"

错误指示如下:

10:00:56 PM web.1 |  yarn run v1.9.4
10:00:56 PM api.1 |  Could not locate Gemfile or .bundle/ directory
[DONE] Killing all processes with signal  SIGINT
10:00:56 PM api.1 Exited with exit code null
10:00:56 PM web.1 Exited with exit code 

"

它指出找不到我的 Gemfile,它位于 API 文件夹中。所以,我想问问"How to locate Gemfile or bundle after "Heroku local -f Procfile.dev“表扬”???

谢谢

您只需更改应用的目录,然后 运行 捆绑安装 :)