plane/apiserver/plane/wsgi.py
2022-11-30 02:47:42 +05:30

16 lines
320 B
Python

"""
WSGI config for plane project.
It exposes the WSGI callable as a module-level variable named ``application``.
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
'plane.settings.production')
application = get_wsgi_application()