Use the DB with the local username

This commit is contained in:
Andreas Zweili 2023-07-14 14:27:32 +02:00
parent 2e781b2cd1
commit 05c61e275a
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ CRISPY_FAIL_SILENTLY = not DEBUG
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "postgres",
"NAME": os.environ.get("USER"),
"USER": os.environ.get("USER"),
"HOST": "localhost",
"PORT": 5432,