mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-05 05:04:46 +02:00

Added SPDX identifiers to all .py files except those in migrations directory. Fixes: [YOCTO #13527] Signed-off-by: Meh Mbeh Ida Delphine <idadelm@gmail.com> Signed-off-by: Paul Eggleton <bluelightning@bluelightning.org>
9 lines
239 B
Python
9 lines
239 B
Python
# 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()
|