Spaces:
Running
Running
File size: 295 Bytes
e21ff46 | 1 2 3 4 5 6 7 8 9 | import os
from django.core.wsgi import get_wsgi_application
# Replace 'core.settings' with the actual path to your settings file
# if your configuration folder is named differently.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
application = get_wsgi_application() |