Você precisa fornecer detalhes em settings.py
. Esta é a parte que você tem que configurar
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
Consulte o link
EDITAR:
Este é o seu arquivo settings.py
sem os comentários.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2'
'NAME': 'blank_db',
'USER': 'postgres',
'PASSWORD': 'thepasswd',
'HOST': '',
'PORT': '',
}
}
Está faltando uma vírgula no final de ENGINE
entry