mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-21 22:34:21 +00:00
🔧 Allow database settings to be configured
This commit is contained in:
parent
2dac9173c9
commit
8c5a2f4955
1 changed files with 4 additions and 3 deletions
|
@ -79,9 +79,10 @@ WSGI_APPLICATION = 'sophon.wsgi.application'
|
|||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.postgresql',
|
||||
'HOST': '', # Connect via UNIX socket (does not work on Windows)
|
||||
'NAME': 'sophon',
|
||||
'USER': 'sophon', # Connect using its own user, isolating sophon from the rest of the server
|
||||
'HOST': os.environ.get("DJANGO_DATABASE_HOST", ""), # Connect via UNIX socket (does not work on Windows)
|
||||
'NAME': os.environ.get("DJANGO_DATABASE_NAME", "sophon"),
|
||||
'USER': os.environ.get("DJANGO_DATABASE_USER", "sophon"), # Connect using its own user, isolating sophon from the rest of the server
|
||||
'PASSWORD': os.environ.get("DJANGO_DATABASE_PASSWORD", ""),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue