build: merge frontend and backend into a single repo

This commit is contained in:
pablohashescobar 2022-11-30 02:47:42 +05:30
parent 10ce333e6f
commit 26ec1e8c15
126 changed files with 8280 additions and 1 deletions

15
apiserver/plane/wsgi.py Normal file
View file

@ -0,0 +1,15 @@
"""
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()