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.
view dev-vcs/kallithea/files/production.wsgi @ 172:2ee95703831d
media-video/blackmagic-media-express: no actual update to Media Express but we now want Desktop Video 10.7 as there's no sense in downloading the old one any more
author | Daniel Neugebauer <dneuge@energiequant.de> |
---|---|
date | Sun, 24 Jul 2016 17:19:59 +0200 |
parents | 2ce94546a682 |
children |
line wrap: on
line source
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')