我在将PHP项目推送到Heroku时遇到了麻烦。每当我尝试推动时,我都会收到此错误:
----> Heroku receiving push
! Heroku push rejected, no Cedar-supported app detected.
To git@heroku.com:intense-hamlet-7552.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:intense-hamlet-7552.git'
这是我第一次使用Heroku,所以这就是我所做的(试图遵循this):
git init
。heroku create
。git push heroku master
我已经尝试过多次使用新文件夹,新存储库但每次都会发生这种情况。
我做错了什么?
编辑:对于建议重复帖子的人:
我看过帖子Heroku push rejected, no Cedar-supported app detected,它描述了一个Ruby应用程序的问题,其中Gemfile
拼写错误。我的应用程序是一个PHP应用程序,没有Gemfile
。
答案 0 :(得分:3)
我想,Heroku没有将我的应用程序识别为PHP应用程序。我创建了一个带有hello world脚本的index.php
,并且热潮!一切正常。