Testing github alternative action for postgres

This commit is contained in:
Griatch 2024-06-27 18:04:49 +02:00
parent 86c65b08d7
commit 094478c337
2 changed files with 23 additions and 5 deletions

View file

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