fix: Updates Django settings module path
Modifies the default environment variable to reflect the correct nested module path for Django settings, ensuring the application references the correct configuration.
This commit is contained in:
parent
a8f843e2db
commit
26664be144
1 changed files with 1 additions and 1 deletions
|
@ -11,6 +11,6 @@ import os
|
||||||
|
|
||||||
from django.core.wsgi import get_wsgi_application
|
from django.core.wsgi import get_wsgi_application
|
||||||
|
|
||||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'synapse_registration.settings')
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'synapse_registration.synapse_registration.settings')
|
||||||
|
|
||||||
application = get_wsgi_application()
|
application = get_wsgi_application()
|
||||||
|
|
Loading…
Reference in a new issue