[Answered ]-Deploying Django Apps on Heroku

1👍

use django-on-heroku, pip install django-on-heroku.
then in your settings.py

import django_on_heroku
###
django_on_heroku.settings(locals())

hopefully, this will work. I faced the same issue once.

Leave a comment