cedar

Rails 3.2: Heroku push rejected, no Cedar-supported app detected

隐身守侯 提交于 2019-11-27 11:42:10
Rails newbie here. I'm trying to deploy my Rails 3.1/Ruby 1.9.3-p0 app to Heroku and have followed all the steps according to Heroku. But I keep running into: Heroku push rejected, no Cedar-supported app detected I've tried all the suggestions in this question but so far unsuccessful. I have encountered a similar rejection. What worked for me was reinitializing the .git file. Try in the command line: rm -rf .git git init git add . git commit -am "Reinitialize" heroku create --stack cedar git push heroku master I Have just solved this problem with one of my apps. If you check the documentation

Rails 3.2: Heroku push rejected, no Cedar-supported app detected

ぐ巨炮叔叔 提交于 2019-11-26 15:41:25
问题 Rails newbie here. I'm trying to deploy my Rails 3.1/Ruby 1.9.3-p0 app to Heroku and have followed all the steps according to Heroku. But I keep running into: Heroku push rejected, no Cedar-supported app detected I've tried all the suggestions in this question but so far unsuccessful. 回答1: I have encountered a similar rejection. What worked for me was reinitializing the .git file. Try in the command line: rm -rf .git git init git add . git commit -am "Reinitialize" heroku create --stack cedar