aboutsummaryrefslogtreecommitdiffstats
path: root/wsgi.py
blob: 7b6f70e77ce25fbb28cec0722e40c05bd9d3eedb (plain)
1
2
3
4
5
6
7
8
# SPDX-License-Identifier: MIT

import os, sys
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
sys.path.append('/var/www/html/layerindex')

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()