Another fix of postgres auth

This commit is contained in:
Griatch 2024-06-27 18:10:21 +02:00
parent 9c7fcac0d6
commit fba1359d91

View file

@ -42,7 +42,7 @@ DATABASES = {
"default": { "default": {
"ENGINE": "django.db.backends.postgresql", "ENGINE": "django.db.backends.postgresql",
"NAME": "evennia", "NAME": "evennia",
"USER": "postgresql", # evennia "USER": "postgres", # evennia
"PASSWORD": "postgres", "PASSWORD": "postgres",
"HOST": os.environ.get("POSTGRES_HOST", "localhost"), "HOST": os.environ.get("POSTGRES_HOST", "localhost"),
"PORT": os.environ.get("POSTGRES_PORT", "5432"), "PORT": os.environ.get("POSTGRES_PORT", "5432"),