Skip to content

Instantly share code, notes, and snippets.

@JamesHovious
Last active August 29, 2015 14:17
Show Gist options
  • Save JamesHovious/704db94470796195b3ee to your computer and use it in GitHub Desktop.
Save JamesHovious/704db94470796195b3ee to your computer and use it in GitHub Desktop.
# Running in development, so use a local MySQL database.
DATABASES = {
'default': {
'ENGINE': 'google.appengine.ext.django.backends.rdbms',
'INSTANCE': 'gaeapp-001:blog',
'NAME': 'mysql',
'USER': 'root',
},
'app-backend': {
'ENGINE': 'google.appengine.ext.django.backends.rdbms',
'INSTANCE': 'gaeapp-001:app-backend',
'NAME': 'app-backend',
'USER': 'root',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment