2012-02-14 37 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