Skip to content
Snippets Groups Projects
Commit 9aaf14b3 authored by Dennis Ahrens's avatar Dennis Ahrens
Browse files

Add wsgi.py to be able to serve it in test deployment

parent e030fa33
Branches
No related tags found
No related merge requests found
"""
WSGI config for helloworld project.
It exposes the WSGI callable as a module-level variable named ``application``.
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "helloworld.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment