Skip to content

Instantly share code, notes, and snippets.

@flavianmissi
Created August 22, 2012 22:10
Show Gist options
  • Save flavianmissi/3429914 to your computer and use it in GitHub Desktop.
Save flavianmissi/3429914 to your computer and use it in GitHub Desktop.
Sample database config for Django. Possible via tsuru
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'MYSQL_DATABASE_NAME',
'USER': 'MYSQL_USER',
'PASSWORD': 'MYSQL_PASSWORD',
'HOST': 'MYSQL_HOST',
'PORT': 'MYSQL_PORT',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment