Skip to content

Instantly share code, notes, and snippets.

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'test_db',
'USER': 'myself',
'PASSWORD': 'haha',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}