Created
February 7, 2017 10:46
-
-
Save python-consulting/f7161864f40576f0df09013a7e133b29 to your computer and use it in GitHub Desktop.
django:database:postgresql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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