We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.

comparison 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
comparison
equal deleted inserted replaced
120:56f8a6108f7d 132:af030a9d6541
1 import os
2 os.environ["HGENCODING"] = "UTF-8"
3 os.environ['PYTHON_EGG_CACHE'] = '###DATADIR###/.egg-cache'
4
5 # sometimes it's needed to set the curent dir
6 os.chdir('###DATADIR###/')
7
8 import site
9 site.addsitedir("###BASEDIR###/lib/python2.7/site-packages")
10
11 from paste.deploy import loadapp
12 from paste.script.util.logging_config import fileConfig
13
14 fileConfig('###CONFDIR###/production.ini')
15 application = loadapp('config:###CONFDIR###/production.ini')