heroku如何使用heroku create命令添加多个插件

时间:2012-02-14 20:24:08

标签: heroku

尝试了

heroku create --stack cedar --remote testaddon --addons loggly:mole custom_domains

heroku create --stack cedar --remote testaddon --addons loggly:mole --addons custom_domains

既没有奏效。

heroku帮助说

 heroku help create
Usage: heroku create [NAME]

 create a new app

     --addons ADDONS        # a list of addons to install
 -b, --buildpack BUILDPACK  # a buildpack url to use for this app
 -r, --remote REMOTE        # the git remote to create, default "heroku"
 -s, --stack STACK          # the stack on which to create the app
似乎我应该可以安装一个插件列表。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

您需要以逗号分隔的方式列出您的加载项:

heroku create --stack cedar --remote testaddon --addons loggly:mole, custom_domains