I tried to deploy my Django project on Heroku but everytime I try \'heroku run python3 manage.py migrate\' I get this error:
/app/.heroku/python/lib/python3.6/si
Alright, I got the solution. I need to add this into my settings.py file:
from decouple import config DATABASES = { 'default': dj_database_url.config( default=config('DATABASE_URL') ) }