Mercurial > hg > ltpdarepo
view buildout.cfg @ 244:e6ed4e03074f stable
Fix timezone handling in database queries.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Fri, 16 Dec 2011 19:09:37 +0100 |
parents | 3d524d31d1c2 |
children | cbbc747949f9 |
line wrap: on
line source
[buildout] include-site-packages = false parts = install instance wsgi develop = . # install software [install] recipe = zc.recipe.egg eggs = ltpdarepo interpreter = python scripts = # generate scripts pointing to the right configuration file [instance] recipe = zc.recipe.egg:script eggs = ${install:eggs} scripts = run admin arguments = '${buildout:directory}/etc/ltpdarepo' # generate wsgi application [wsgi] recipe = zc.recipe.egg:script eggs = ${install:eggs} scripts = wsgi entry-points = wsgi=ltpdarepo:main initialization = from ltpdarepo import Application application = Application('${buildout:directory}/etc/ltpdarepo')