2👍
There are standart Heroku commands to do this:
$ heroku auth:login
... output omitted ...
$ heroku create --stack cedar
... output omitted ...
$ git commit -a -m 'Mods to run on Heroku.'
$ git push heroku master
UPDATE:
Also if you are planning to use Heroku in future it could be useful frt you to check their official Documentation – Getting Started with Django on Heroku
0👍
This will delete your repo, but this what worked for me when I got that error.
rm -rf .git
git init
git add .
git commit -m "First commit"
heroku create --stack cedar
git push heroku master
- [Answered ]-Getting multiple user objects using filter
- [Answered ]-Submitting multiple POST requests as multi threads in Python/Django
- [Answered ]-How to show current object inside template used with class based FormView
- [Answered ]-Put a Rendered Django Template in Json along with some other items
- [Answered ]-MultiValueDictKeyError: "'password'"
Source:stackexchange.com