Fix: get database config from env
This commit is contained in:
parent
a352a1f752
commit
4d5e661767
1 changed files with 6 additions and 5 deletions
|
@ -101,11 +101,12 @@ WSGI_APPLICATION = "core.wsgi.application"
|
|||
DATABASES = {
|
||||
"default": {
|
||||
"ENGINE": "django.db.backends.postgresql",
|
||||
"NAME": "archivist",
|
||||
"USER": "archivist",
|
||||
"PASSWORD": "password",
|
||||
"HOST": "localhost", # or the service name in your docker-compose.yml
|
||||
"PORT": "5432",
|
||||
"NAME": os.environ.get("DB_NAME", "archivist"),
|
||||
"USER": os.environ.get("DB_USER", "archivist"),
|
||||
"PASSWORD": os.environ.get("DB_PASSWORD", "password"),
|
||||
# or the service name in your docker-compose.
|
||||
"HOST": os.environ.get("DB_HOST", "localhost"),
|
||||
"PORT": os.environ.get("DB_PORT", "5432"),
|
||||
}
|
||||
# "default": {
|
||||
# "ENGINE": "django.db.backends.sqlite3",
|
||||
|
|
Loading…
Add table
Reference in a new issue