1๐
So it turns out the that the problem was that I had another file called local.py in my settings folder for my project. Tree as follows:
โโโ microblog
โย ย โโโ __init__.py
โย ย โโโ __init__.pyc
โย ย โโโ settings
โย ย โย ย โโโ base.py
โย ย โย ย โโโ base.pyc
โย ย โย ย โโโ __init__.py
โย ย โย ย โโโ __init__.pyc
โย ย โย ย โโโ local.py
โย ย โย ย โโโ local.pyc
โย ย โโโ settings.pyc
โย ย โโโ urls.py
โย ย โโโ urls.pyc
โย ย โโโ wsgi.py
โย ย โโโ wsgi.pyc
โโโ Procfile
โโโ requirements.txt
Since I was following the Getting Started wit Django Tutorial, I had the following in my local.py file:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': '<user>',
'PASSWORD': '<pwd>',
'NAME': '<name>',
'HOST': 'localhost',
}
}
That was causing the problem. I tried adding the file to my .gitignore, but that didnโt work. The solution was to actually comment these lines out.
๐คuser3858526
- [Answer]-User matching query does not exist โ django
- [Answer]-How to change the name of the document=True field of Haystack in Django?
Source:stackexchange.com