mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
15 lines
298 B
Python
15 lines
298 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()
|