mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Testing github alternative action for postgres
This commit is contained in:
parent
86c65b08d7
commit
094478c337
2 changed files with 23 additions and 5 deletions
9
.github/workflows/postgresql_settings.py
vendored
9
.github/workflows/postgresql_settings.py
vendored
|
|
@ -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"),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue