You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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!
The text was updated successfully, but these errors were encountered: