0

I already pushed a Play app before, so I don't understand why I'm getting this error now on another app:

git push heroku master
...

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

This question doesn't seem to be relevant, since I don't have a Gemfile (my other app pushes quite fine without one). At first I had a Procfile as instructed here, but then I noticed my other working app does't have a Procfile, so I removed it.

Here is the working app, and the problematic one.

The remote git config is

[remote "heroku"]
    url = git@heroku.com:bitcoinpotato.git
    fetch = +refs/heads/*:refs/remotes/heroku/*

The app stack is the latest - cedar.

Community
  • 1
  • 1
ripper234
  • 222,824
  • 274
  • 634
  • 905

1 Answers1

2

You do not have an application.conf in the conf directory, which is what the Play! buildpack uses to identify the fact that the application is Play!

You can find the Heroku buildpack here: https://github.com/heroku/heroku-buildpack-play

Neil Middleton
  • 22,105
  • 18
  • 80
  • 134