I use this tutorial with Python 3.5, Django 1.9, Linux Mint and PostgreSQL 9.3. But when I try "manage.py migrate" I have an error:
django.db.utils.OperationalError: FATAL: password authentication failed for user "myprojectuser"
My database settings:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'myproject',
'USER': 'myprojectuser',
'PASSWORD': 'xxxxx',
'HOST': 'localhost',
'PORT': '',
}}
'default': "postgres://myprojectuser:[email protected]:5432/myproject"