megacoffee.net Gentoo overlay - legacy mirror
We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.
diff dev-vcs/kallithea/files/production.wsgi @ 132:af030a9d6541
adding old dev-vcs/kallithea ebuild (lay around since late 2014, do not use!)
author | Daniel Neugebauer <dneuge@energiequant.de> |
---|---|
date | Sat, 26 Mar 2016 17:53:07 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-vcs/kallithea/files/production.wsgi Sat Mar 26 17:53:07 2016 +0100 @@ -0,0 +1,15 @@ +import os +os.environ["HGENCODING"] = "UTF-8" +os.environ['PYTHON_EGG_CACHE'] = '###DATADIR###/.egg-cache' + +# sometimes it's needed to set the curent dir +os.chdir('###DATADIR###/') + +import site +site.addsitedir("###BASEDIR###/lib/python2.7/site-packages") + +from paste.deploy import loadapp +from paste.script.util.logging_config import fileConfig + +fileConfig('###CONFDIR###/production.ini') +application = loadapp('config:###CONFDIR###/production.ini')