Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Created September 29, 2020 19:38
Show Gist options
  • Save codetombomb/b72b1eef7a334156c7e846e1b89026ab to your computer and use it in GitHub Desktop.
Save codetombomb/b72b1eef7a334156c7e846e1b89026ab to your computer and use it in GitHub Desktop.
Configuring the new db
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'ctbportfoliodb',
'USER': 'postgres',
'PASSWORD': 'whateverpasswordyouusedwhenwesetitupasecago',
'HOST': 'localhost',
'PORT': '5432',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment