beesgospel/common/wsgi.py

11 lines
211 B
Python
Raw Normal View History

2025-07-08 20:37:02 +02:00
"""
WSGI config for beesgospel project.
"""
import os
from django.core.wsgi import get_wsgi_application
2025-07-08 20:49:30 +02:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'common.settings')
2025-07-08 20:37:02 +02:00
application = get_wsgi_application()