Running `rake db:migrate` attached to terminal... failed
! Multiple apps in folder and no app specified.
! Specify app with --app APP.
当我尝试运行 rake db:migrate 时,我在终端中收到上述错误,有人可以帮忙吗?
Running `rake db:migrate` attached to terminal... failed
! Multiple apps in folder and no app specified.
! Specify app with --app APP.
当我尝试运行 rake db:migrate 时,我在终端中收到上述错误,有人可以帮忙吗?
正如错误明确指出的那样,您需要指定要为其运行命令的应用程序。如果您在项目目录中,则不需要指定应用程序。如果您不在项目文件夹之外,请像这样运行命令:
heroku run rake db:migrate --app <your-app-name>
我在与heroku无关的地方出现了这个问题。如果你真的想看,打开你的 .git/config 文件
例如,我在登台时发现我有第二个遥控器。从我的 .git/config 文件中删除它修复了所有问题。
[remote "staging"]
url = git@heroku.com:site-stage.git
fetch = +refs/heads/*:refs/remotes/staging/*