我正在尝试将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)
我该如何解决这个问题?
答案 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>
。