Initial commit

This commit is contained in:
Lexi / Zoe 2019-09-16 00:56:59 +02:00
commit 9bd3d649c9
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
7 changed files with 207 additions and 0 deletions

16
pluralityspace/wsgi.py Normal file
View file

@ -0,0 +1,16 @@
"""
WSGI config for pluralityspace 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/2.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pluralityspace.settings')
application = get_wsgi_application()