how to setup Django database using SQL 8 code example
Example 1: django mysql settings
#add this settings in settings file
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'DB_NAME',
'USER': 'DB_USER',
'PASSWORD': 'DB_PASSWORD',
'HOST': 'localhost', # Or an IP Address that your DB is hosted on
'PORT': '3306',
}
}
Example 2: link django to mysql
$ brew reinstall openssl
#run two commands under "For compilers to find [email protected] you may need to set:"
$ pip install mysqlclient