2014-04-10 05:05:52 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""WSGI runner script for the Rophako CMS."""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
|
|
|
|
# Add the CWD to the path.
|
|
|
|
sys.path.append(".")
|
|
|
|
|
|
|
|
# Use the 'rophako' virtualenv.
|
|
|
|
activate_this = os.environ['HOME']+'/.virtualenv/rophako/bin/activate_this.py'
|
|
|
|
execfile(activate_this, dict(__file__=activate_this))
|
|
|
|
|
2014-07-23 19:42:29 +00:00
|
|
|
from rophako.app import app as application
|
2014-04-10 05:05:52 +00:00
|
|
|
|
|
|
|
# vim:ft=python
|