Edgewall Software

Changes between Version 3 and Version 4 of CookBook/TracBuildout


Ignore:
Timestamp:
Aug 4, 2015, 8:09:16 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • CookBook/TracBuildout

    v3 v4  
    1 This page documents how to create one or several Trac instance with [http://www.buildout.org Buildout].
     1= Using Buildout to manage Trac instances
     2 
     3This page documents how to create one or several Trac instance with [http://www.buildout.org Buildout]. Buildout is a Python-based build system for creating, assembling and deploying applications from multiple parts.
    24
    3 Luckily, [http://pypi.python.org/pypi/Trac Trac is released as eggs] on the [http://pypi.python.org Cheese Shop]. To lower the maintenance effort, it is a good idea to leverage buildout to manage Trac instances. Thus, an ongoing effort is made by the [http://pypi.python.org/pypi/pbp.recipe.trac pbp.recipe.trac] project to provide an easy mechanism to deploy and maintain Trac instances.
     5Because [pypi:Trac Trac is released as eggs] you can use Buildout to manage Trac instances, which will lower the maintenance effort. Thus, an ongoing effort is made by the [pypi:pbp.recipe.trac pbp.recipe.trac] project to provide an easy mechanism to deploy and maintain Trac instances.
    46
    5 There is several lines of pbp.recipe.trac:
     7There are several lines of pbp.recipe.trac:
    68 * pbp.recipe.trac 0.4.x for Trac 0.12 support
    79 * pbp.recipe.trac 0.3.x for Trac 0.11 support
    810 * pbp.recipe.trac 0.2.x for Trac 0.10 support
    911
    10 Only the 0.4.x is currently developed.
     12Only the 0.4.x branch is currently developed.
    1113
    1214A tutorial and usage example is available here: http://kevin.deldycke.com/2010/12/automate-trac-instance-deployment-buildout/