I am trying to push a django web application to a hero to no avail due to the following error:
(venv) douglaswong@Douglas-MacBook-Pro ~/testing (testing)$ git push heroku master Counting objects: 53, done. Delta compression using up to 4 threads. Compressing objects: 100% (35/35), done. Writing objects: 100% (53/53), 41.11 KiB | 0 bytes/s, done. Total 53 (delta 12), reused 48 (delta 11) remote: Compressing source files... done. remote: Building source: remote: remote: -----> Fetching set buildpack git://github.com/heroku/heroku-buildpack-python.git... done remote: remote: ! Push rejected, failed to detect set buildpack git://github.com/heroku/heroku-buildpack-python.git remote: More info: https://devcenter.heroku.com/articles/buildpacks
It says that it failed to detect set buildpack. However, I installed it using
(venv) douglaswong@Douglas-MacBook-Pro ~/testing (testing)$ heroku create --buildpack git://github.com/heroku/heroku-buildpack-python.git Creating fierce-waters-9228... done, stack is cedar-14 Buildpack set. Next release on fierce-waters-9228 will use git://github.com/heroku/heroku-buildpack-python.git. https://fierce-waters-9228.herokuapp.com/ | https://git.heroku.com/fierce-waters-9228.git
What are the possible reasons for this? I currently have these files in the root directory, if that matters:
Procfile angellistJob venv README.md requirements.txt
Any tips are welcome, thanks!
heroku
Douglas wong
source share