mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
13 lines
423 B
Text
13 lines
423 B
Text
![]() |
import os, sys
|
||
|
|
||
|
apache_configuration= os.path.dirname('/home/conesus/newsblur')
|
||
|
project = os.path.dirname(apache_configuration)
|
||
|
workspace = os.path.dirname(project)
|
||
|
sys.path.append(workspace)
|
||
|
|
||
|
sys.path.append('/home/conesus/django/')
|
||
|
sys.path.append('/home/conesus/newsblur/')
|
||
|
|
||
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
||
|
import django.core.handlers.wsgi
|
||
|
application = django.core.handlers.wsgi.WSGIHandler()
|