source: waeup/branches/uli-cleanup/buildout.cfg @ 4500

Last change on this file since 4500 was 3516, checked in by uli, 16 years ago

Add a buildout.

File size: 2.1 KB
Line 
1[buildout]
2develop = .
3parts = app data zopectl i18n test
4find-links = http://download.zope.org/distribution/
5newest = false
6extends= http://grok.zope.org/releaseinfo/grok-0.13.cfg
7versions = versions
8
9[app]
10recipe = zc.zope3recipes>=0.5.3:application
11eggs = waeup
12site.zcml = <include package="waeup" />
13            <include package="zope.app.twisted" />
14
15            <configure i18n_domain="waeup">
16              <unauthenticatedPrincipal id="zope.anybody"
17                                        title="Unauthenticated User" />
18              <unauthenticatedGroup id="zope.Anybody"
19                                    title="Unauthenticated Users" />
20              <authenticatedGroup id="zope.Authenticated"
21                                title="Authenticated Users" />
22              <everybodyGroup id="zope.Everybody"
23                              title="All Users" />
24              <principal id="zope.manager"
25                         title="Manager"
26                         login="grok"
27                         password_manager="Plain Text"
28                         password="grok"
29                         />
30
31              <!-- Replace the following directive if you don't want
32                   public access -->
33              <grant permission="zope.View"
34                     principal="zope.Anybody" />
35              <grant permission="zope.app.dublincore.view"
36                     principal="zope.Anybody" />
37
38              <role id="zope.Manager" title="Site Manager" />
39              <role id="zope.Member" title="Site Member" />
40              <grantAll role="zope.Manager" />
41              <grant role="zope.Manager"
42                     principal="zope.manager" />
43           </configure>
44
45[data]
46recipe = zc.recipe.filestorage
47
48# this section named so that the start/stop script is called bin/zopectl
49[zopectl]
50recipe = zc.zope3recipes:instance
51application = app
52zope.conf = ${data:zconfig}
53
54[test]
55recipe = zc.recipe.testrunner
56eggs = waeup
57defaults = ['--tests-pattern', '^f?tests$', '-v']
58
59# this section named so that the i18n scripts are called bin/i18n...
60[i18n]
61recipe = lovely.recipe:i18n
62package = waeup
63domain = waeup
64location = src/waeup
65output = locales
Note: See TracBrowser for help on using the repository browser.