Skip to content

Instantly share code, notes, and snippets.

@mrWinston
Last active August 2, 2017 11:09
Show Gist options
  • Select an option

  • Save mrWinston/754a78279a1ca8b55f84e9f91a7071a8 to your computer and use it in GitHub Desktop.

Select an option

Save mrWinston/754a78279a1ca8b55f84e9f91a7071a8 to your computer and use it in GitHub Desktop.
Django Postgres db settings #django #db #python #settings
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': '<DATABASE NAME>',
'USER': '<username >',
'PASSWORD': '<pw>',
'HOST': '<DNS or IP of postgres server>',
'PORT': '<Port of PSQL server>',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment