0

我创建了一个heroku应用程序:

$ heroku create olp-website
Creating olp-website... done, stack is cedar

然后我尝试将我的 git 分支推送到应用程序:

git push heroku deploy
Counting objects: 25, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (20/20), done.
Writing objects: 100% (25/25), 8.48 KiB, done.
Total 25 (delta 1), reused 0 (delta 0)
Pushed to non-master branch, skipping build.
To git@heroku.com:olp-website.git
 * [new branch]      deploy -> deploy

然后,我尝试将插件添加到应用程序:

$ heroku addons:add cloudamqp:panda
 !    No app specified.
 !    Run this command from an app folder or specify which app to use with --app APP.

所以这既是一个普遍的问题,也是一个具体的问题。分支是否必须是主分支(请参阅“推送到非主分支,跳过构建”)?是否可以在特定的 Heroku 应用程序中,或者您是否必须为每个插件指定应用程序?

4

1 回答 1

1

是的 - 查看 Heroku 的开发中心。 文章告诉你怎么做: git push heroku yourbranch:master

至于附加组件,只需指定应用程序即可。所以像

heroku addons:add cloudamqp:panda -a myappname

于 2013-04-12T09:14:48.357 回答