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",
"NAME": "django",
"USER": os.environ.get("USER"),
"HOST": "localhost",
"PORT": 5432,
"HOST": os.environ.get("PGHOST"),
}
}