Heroku buidpack名称超过30个字母?

时间:2014-01-21 02:30:49

标签: heroku

我正在尝试将buildpack部署到heroku,我已将其重命名为30个字母,但我仍然得到:

/f/envs/r1/driver1 (master)
$ heroku create --stack cedar https://github.com/kc1/hero-bpack-py-phant.git          
 !    Name must start with a letter and can only contain lowercase letters, numbers, and dashes.
 !    Name is too long (maximum is 30 characters)

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

此处的CLI确定您的应用程序名称为https://github.com/kc1/hero-bpack-py-phant.git

实际上你需要做的是:

heroku create --stack cedar --buildpack https://github.com/kc1/hero-bpack-py-phant.git <APPNAMEHERE>

在命令末尾注意--buildpack<APPNAMEHERE>