Skip to content

Instantly share code, notes, and snippets.

@utsukushiihime
Created October 3, 2020 20:27
Show Gist options
  • Save utsukushiihime/089748027c2ac6fee27b68c057602245 to your computer and use it in GitHub Desktop.
Save utsukushiihime/089748027c2ac6fee27b68c057602245 to your computer and use it in GitHub Desktop.
Django Project Postgres Database Configuration
# 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