Last active
August 2, 2017 11:09
-
-
Save mrWinston/754a78279a1ca8b55f84e9f91a7071a8 to your computer and use it in GitHub Desktop.
Django Postgres db settings #django #db #python #settings
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', | |
| '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