Remove DB name, use same as DB USER

This commit is contained in:
Aarni Halinen
2019-10-09 19:32:46 +03:00
parent 046ae89d29
commit 522c804369
3 changed files with 1 additions and 6 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ TELEGRAM_BOT_TOKEN = os.getenv('TG_BOT_TOKEN')
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': os.getenv('DB_NAME', '<none>'),
'NAME': os.getenv('DB_USER', '<none>'),
'USER': os.getenv('DB_USER', '<none>'),
'PASSWORD': os.getenv('DB_PASSWD', '<none>'),
'HOST': os.getenv('DB_HOST', '127.0.0.1'),