git://git.onelab.eu
/
unfold.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
FIX: indentation. config.py
[unfold.git]
/
apache
/
myslice.wsgi
1
import os
2
import sys
3
4
path = '/usr/share/myslice'
5
if path not in sys.path:
6
sys.path.append(path)
7
8
os.environ['DJANGO_SETTINGS_MODULE'] = 'myslice.settings'
9
10
import django.core.handlers.wsgi
11
application = django.core.handlers.wsgi.WSGIHandler()
12