Skip to content

Instantly share code, notes, and snippets.

@bikashthapa01
Created November 4, 2018 12:49
Show Gist options
  • Save bikashthapa01/950177fac40ffe21f26e93855663a74b to your computer and use it in GitHub Desktop.
Save bikashthapa01/950177fac40ffe21f26e93855663a74b to your computer and use it in GitHub Desktop.
Connect MYSQL Database in Django app
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'managerpro',
'USER': 'root',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '3325',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment