2012-02-14 57 views
0

添加多个插件试图的Heroku了如何使用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 

如此看来,我应该可以安装插件的列表。有什么建议么?

+2

你尝试过一个逗号分隔的列表? – 2012-02-14 22:39:26

+0

狗屎,那工作。 – Bobo 2012-02-17 15:21:51

回答

0

你需要列出的附加组件以逗号分隔的方式:

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