When running python manage.py migrate after creating the appointment_reminders DB, I kept getting a slew of errors saying no password authentication. I tried many things, but then found that we need to add a user and password to the common.py file under DATABASES:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'appointment_reminders',
'USER': 'postgres',
'PASSWORD': 'yourpassword',
}
}
I hope this helps!
When running python manage.py migrate after creating the appointment_reminders DB, I kept getting a slew of errors saying no password authentication. I tried many things, but then found that we need to add a user and password to the common.py file under DATABASES:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'appointment_reminders',
'USER': 'postgres',
'PASSWORD': 'yourpassword',
}
}
I hope this helps!