"Heroku push rejected, no Cedar-supported app detected"の対処法
さっそく git push したらこんなエラーが出ました。
$ git push heroku master
-----> Heroku receiving push
! Heroku push rejected, no Cedar-supported app detected
To git@heroku.com:yukiwikiminionethna.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:yukiwikiminionethna.git'
これは、プロジェクトルートにindex.phpがないのが原因のようです。index.phpを置いたら解決しました。
ファイルの中身はなんでもよいみたいです。
$ echo "hello" > index.php
$ git add index.php
$ git commit -m "add index.php"
$ git push heroku master
成功!!
カテゴリ:
Git