Blame view

web/run.wsgi 289 Bytes
8a2d2ccc   Goutte   Add WSGI and Apac...
1
2
3
4
5
6
7
8
9
10
11
import os
import sys

ROOT_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))

sys.path.append(ROOT_DIR)

activate_this = os.path.join(ROOT_DIR, 'venv', 'bin', 'activate_this.py')
execfile(activate_this, dict(__file__=activate_this))

from web.run import app as application