LangApp / core /wsgi.py
randusertry's picture
Upload 8 files
e21ff46 verified
raw
history blame contribute delete
295 Bytes
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()