Created
April 12, 2016 16:52
-
-
Save devStepsize/3dc81f4af18ded5cc8d90f94a01db0e4 to your computer and use it in GitHub Desktop.
Settings to support MySQL with Django
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment