0

私はしばらくFacebookアプリを開発してきましたが、今はすべてのファイルを変更したいと思っていますが、git push herokuをしようとするとこのエラーが発生します:

C:\Users\amando96\deep-window-4782>git push heroku
Counting objects: 14, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (10/10), done.
Writing objects: 100% (11/11), 2.78 KiB, done.
Total 11 (delta 2), reused 0 (delta 0)

-----> Heroku receiving push
 !     Heroku push rejected, no Cedar-supported app detected

To git@heroku.com:deep-window-4782.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:deep-window-4782.git'

C:\Users\amando96\deep-window-4782>

また、git リポジトリは更新されないため、アプリも更新されません。

私は何が欠けていますか?

ありがとう。

4

1 に答える 1

0

I'm not sure why this may have worked for you before - it shouldn't have.

For an easy way to host static websites on the Cedar stack, there's nice 'trick' for using their PHP buildpack to get a vanilla Apache server, and then turn off PHP support.

See http://kennethreitz.com/static-sites-on-heroku-cedar.html

于 2012-09-15T17:21:32.697 に答える