run_ssa.wsgi 293 Bytes
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