Deploy Django to Heroku - Push rejected

2016-03-26 Thread Bernardo Garcia
I am trying deploy my Django application to heroku and I get an error when I perform git push heroku master command My structure directory is the following And the content of requirements/production.txt is: -r base.txt gunicorn==19.4.5 dj-database-url=

Deploy Django to Heroku - Push rejected

2016-03-20 Thread Bernardo Garcia
I am trying deploy my Django application to heroku and I get an error when I perform git push heroku master command Do you know the reason which I get this error? uleague) ➜ pickapp git:(master) ✗ git push heroku masterCounting objects: 195, done.Delta compression using up to 8 threads.Compres

Re: Deploy Django to Heroku - Push rejected

2016-03-19 Thread Andreas Kuhne
Hi, You haven't created the app in the correct heroku way. You have to have a base django project structure. So the following changes I would suggest: 1. Use the standard layout for settings. So a settings.py file with the PRODUCTION settings in and it will find that file. Also make sure you have