# settings.py
#... other codes
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': '{데이터베이스명}',
'USER': '{계정 아이디}',
'PASSWORD' : '{계정 비밀번호}',
'HOST': '{URL}', # 공백일 경우, localhost
'PORT' : '3306' # 공백일 경우, 3306
#... other codes
참고: https://note.chanyeongpark.com/posts/python/15
참고: https://growupcoding.tistory.com/80