mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
First commit after change to SPA
This commit is contained in:
19
apache/django_live.wsgi
Normal file
19
apache/django_live.wsgi
Normal file
@@ -0,0 +1,19 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
import djcelery
|
||||
djcelery.setup_loader()
|
||||
|
||||
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'] = 'settings'
|
||||
|
||||
import django.core.handlers.wsgi
|
||||
application = django.core.handlers.wsgi.WSGIHandler()
|
||||
Reference in New Issue
Block a user