1You need to make changes in project settings.py.
2Provide USER and PASSWORD for your database
3If your database isn't mysql change ENGINE
4
5DATABASES = {
6 'default': {
7 'ENGINE': 'django.db.backends.mysql',
8 'NAME': 'myproject',
9 'USER': 'root',
10 'PASSWORD': 'rootpassword',
11 'HOST': 'localhost',
12 'PORT': '',
13 }
14}
1$ brew reinstall openssl
2 #run two commands under "For compilers to find openssl@1.1 you may need to set:"
3$ pip install mysqlclient