view buildout.cfg @ 18:4c08f51482a3

Add 2.6 to 2.7 database schema version upgrade. Perform the repository database schema optimization as part of this upgrade step. Errors during the schema upgrade of each repository are reported but are not fatal to the upgrade step. * * * Bump schema version.
author Daniele Nicolodi <daniele@grinta.net>
date Mon, 27 Jun 2011 14:08:38 +0200
parents 2b7f9772585a
children 04b93e15bb71
line wrap: on
line source

[buildout]
parts = flask wsgi
develop = src

[flask]
recipe = zc.recipe.egg
eggs = 
     Flask
     WTForms
     ordereddict
     ltpdarepo
     zope.testbrowser [wsgi]
interpreter = python

[wsgi]
recipe = zc.recipe.egg
eggs = ${flask:eggs}
entry-points =
    wsgi=ltpdarepo:main
initialization =
    from ltpdarepo import app as application
    application.config.from_pyfile('${buildout:directory}/src/ltpdarepo/config.py')