Go to the backend project folder in the directory /442projects-django-mango/backend/backend
Modify DATABASES in the file settings.py from sqlite3 to mysql:
Add the following to under DATABSES:
"default": {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'cse442_542_2019_fall_teamd_db'
'USER': '<user_name of the user',
'PASSWORD': '<password of the user',
'HOST': 'tethys.cse.buffalo.edu',
'PORT': '3306',
}