Initial commit

This commit is contained in:
Fergal Moran
2015-04-30 23:17:58 +01:00
commit 6f9f29f5fc
193 changed files with 23428 additions and 0 deletions

16
apache/django_live.wsgi Executable file
View File

@@ -0,0 +1,16 @@
import os
import sys
path = '/var/www/deepsouthsounds.com/dss'
if path not in sys.path:
sys.path.append(path)
path = '/var/www/deepsouthsounds.com'
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'dss.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()