Error While Deploying Django App To Heroku
I am trying to deploy a django app to heroku through github. I am getting the following error ImportError: No module named settings.staging But I have the 'staging.py' file
Solution 1:
Just create an empty __init__.py
file in your settings folder (you are missing it now). It will indicate that folder is a package and thus files from it can be imoprted
Post a Comment for "Error While Deploying Django App To Heroku"