A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
570 B
21 lines
570 B
#!/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))
|
|
|
|
def application(environ, start_response):
|
|
if "ROPHAKO_SETTINGS" in environ:
|
|
os.environ["ROPHAKO_SETTINGS"] = environ["ROPHAKO_SETTINGS"]
|
|
from rophako.app import app as _application
|
|
return _application(environ, start_response)
|
|
|
|
# vim:ft=python
|
|
|