Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add wsgi file
  • Loading branch information
kthoden committed Sep 9, 2020
1 parent f521529 commit 55d0738
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions website/website/wsgi.py
@@ -0,0 +1,14 @@
"""
WSGI config for website project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/
"""

import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "website.settings")

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

0 comments on commit 55d0738

Please sign in to comment.