Created
October 3, 2020 20:27
-
-
Save utsukushiihime/089748027c2ac6fee27b68c057602245 to your computer and use it in GitHub Desktop.
Django Project Postgres Database Configuration
This file contains 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
# A Django project's configuration lives in settings.py. | |
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.postgresql', | |
'NAME': 'dbname', | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment