2023-10-20 07:25:55 +00:00
|
|
|
"""WSGI config for project project.
|
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
"""
|
|
|
|
|
2023-09-14 12:04:37 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
|
2023-10-25 05:28:57 +00:00
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conservancy.settings')
|
2023-09-14 12:04:37 +00:00
|
|
|
|
|
|
|
application = get_wsgi_application()
|