Skip to content

Instantly share code, notes, and snippets.

@hseritt
Created February 25, 2017 12:42
Show Gist options
  • Save hseritt/c33a07b9fd738712d15827584b365edf to your computer and use it in GitHub Desktop.
Save hseritt/c33a07b9fd738712d15827584b365edf to your computer and use it in GitHub Desktop.
Postgresql setup for Django
...
# for Postgresql:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'activotrack',
'USER': 'admin',
'PASSWORD': 'admin',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment