blob: 4493e472c8b846daa4c9a8535ef8f16b35c915ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
"""
WSGI config for myproject 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/1.7/howto/deployment/wsgi/
"""
import os, sys, site
from os.path import dirname, abspath
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
# Fix markdown.py (and potentially others) using stdout
sys.stdout = sys.stderr
SERVER_ROOT = abspath(dirname(dirname(__file__)))+'/'
# Tell wsgi to add the Python site-packages to it's path.
site.addsitedir(SERVER_ROOT+'venv/lib/python3.7/site-packages')
sys.path = [SERVER_ROOT,] + sys.path
sys.path.insert(0, os.path.join(SERVER_ROOT, "app"))
sys.path.insert(0, os.path.join(SERVER_ROOT, "app/lib"))
sys.path.insert(0, os.path.join(SERVER_ROOT, "config"))
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
|