Skip to content

Instantly share code, notes, and snippets.

@PoplarYang
Created March 20, 2017 13:06
Show Gist options
  • Save PoplarYang/93e5f84623afaab63f29905e190fe13e to your computer and use it in GitHub Desktop.
Save PoplarYang/93e5f84623afaab63f29905e190fe13e to your computer and use it in GitHub Desktop.
django - mysql
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'cmdb',
'USER': 'root',
'PASSWORD': '',
'HOST': '127.0.0.1',
'PORT': '3306',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment