Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save python-consulting/f7161864f40576f0df09013a7e133b29 to your computer and use it in GitHub Desktop.
Save python-consulting/f7161864f40576f0df09013a7e133b29 to your computer and use it in GitHub Desktop.
django:database:postgresql
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'myproject',
'USER': 'myprojectuser',
'PASSWORD': 'password',
'HOST': 'localhost',
'PORT': '',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment