wip initial django setup

This commit is contained in:
Nick Sweeting 2019-04-02 16:36:41 -04:00
parent 03f300d050
commit 27708152d2
36 changed files with 257 additions and 59 deletions

View file

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