Connect through socket to DB

This commit is contained in:
Andreas Zweili 2023-07-18 21:43:42 +02:00
parent 3734f26947
commit 4217774c13
1 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@ DATABASES = {
"ENGINE": "django.db.backends.postgresql", "ENGINE": "django.db.backends.postgresql",
"NAME": "django", "NAME": "django",
"USER": os.environ.get("USER"), "USER": os.environ.get("USER"),
"HOST": "localhost", "HOST": os.environ.get("PGHOST"),
"PORT": 5432,
} }
} }