1 | [buildout] |
---|
2 | parts = |
---|
3 | app |
---|
4 | i18n |
---|
5 | test |
---|
6 | mkdirs |
---|
7 | zpasswd |
---|
8 | site_zcml |
---|
9 | zope_conf |
---|
10 | zdaemon_conf |
---|
11 | raw_deploy_ini |
---|
12 | raw_debug_ini |
---|
13 | themed_deploy_ini |
---|
14 | themed_debug_ini |
---|
15 | profile_ini |
---|
16 | kofactl |
---|
17 | waeupdocs |
---|
18 | coverage-detect |
---|
19 | coverage-report |
---|
20 | lxml |
---|
21 | diazo |
---|
22 | nodejs |
---|
23 | npm |
---|
24 | grunt_script |
---|
25 | # For backward compatibility, telling buildout not to throw away |
---|
26 | # the data and log subdirectories from the parts directory. |
---|
27 | data |
---|
28 | log |
---|
29 | |
---|
30 | extends = |
---|
31 | http://good-py.appspot.com/release/diazo/1.0 |
---|
32 | buildout.cfg |
---|
33 | |
---|
34 | find-links = |
---|
35 | |
---|
36 | extensions = |
---|
37 | mr.developer |
---|
38 | |
---|
39 | auto-checkout = bootstrap |
---|
40 | always-checkout = force |
---|
41 | |
---|
42 | develop = . |
---|
43 | |
---|
44 | show-picked-versions = true |
---|
45 | update-versions-file = versions.cfg |
---|
46 | |
---|
47 | |
---|
48 | [sources] |
---|
49 | bootstrap = git https://github.com/twbs/bootstrap.git egg=false rev=v3.0.3 path=layout/ |
---|
50 | |
---|
51 | [lxml] |
---|
52 | recipe = z3c.recipe.staticlxml |
---|
53 | egg = lxml |
---|
54 | |
---|
55 | [diazo] |
---|
56 | recipe = zc.recipe.egg |
---|
57 | eggs = |
---|
58 | diazo [wsgi] |
---|
59 | PasteScript |
---|
60 | waeup.kofa [beaker] |
---|
61 | |
---|
62 | [nodejs] |
---|
63 | recipe = zc.recipe.cmmi |
---|
64 | #url = http://nodejs.org/dist/v0.9.3/node-v0.9.3.tar.gz |
---|
65 | url = http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz |
---|
66 | |
---|
67 | # create a shell script that wraps `grunt` script in `parts/` with |
---|
68 | # $PATH set correctly. |
---|
69 | [grunt_script] |
---|
70 | recipe = collective.recipe.template |
---|
71 | mode = 775 |
---|
72 | input = etc/grunt.sh.in |
---|
73 | output = ${buildout:directory}/bin/grunt |
---|
74 | |
---|
75 | [npm] |
---|
76 | recipe = plone.recipe.command |
---|
77 | command = |
---|
78 | cd ${buildout:directory}/layout/bootstrap |
---|
79 | ${buildout:parts-directory}/nodejs/bin/npm install -g grunt-cli |
---|
80 | ${buildout:parts-directory}/nodejs/bin/npm install |
---|
81 | |
---|
82 | # |
---|
83 | # waeup.kofa config |
---|
84 | # |
---|
85 | [app] |
---|
86 | recipe = zc.recipe.egg |
---|
87 | eggs = waeup.kofa [beaker, diazo] |
---|
88 | z3c.evalexception>=2.0 |
---|
89 | Paste |
---|
90 | PasteScript |
---|
91 | PasteDeploy |
---|
92 | repoze.profile |
---|
93 | ZODB3 |
---|
94 | interpreter = python-console |
---|
95 | |
---|
96 | |
---|
97 | [raw_debug_ini] |
---|
98 | recipe = collective.recipe.template |
---|
99 | input = etc/raw/debug.ini.in |
---|
100 | output = ${buildout:parts-directory}/etc/raw-debug.ini |
---|
101 | |
---|
102 | [raw_deploy_ini] |
---|
103 | recipe = collective.recipe.template |
---|
104 | input = etc/raw/deploy.ini.in |
---|
105 | output = ${buildout:parts-directory}/etc/raw-deploy.ini |
---|
106 | |
---|
107 | [themed_debug_ini] |
---|
108 | recipe = collective.recipe.template |
---|
109 | input = etc/themed/debug.ini.in |
---|
110 | output = ${buildout:parts-directory}/etc/themed-debug.ini |
---|
111 | |
---|
112 | [themed_deploy_ini] |
---|
113 | recipe = collective.recipe.template |
---|
114 | input = etc/themed/deploy.ini.in |
---|
115 | output = ${buildout:parts-directory}/etc/themed-deploy.ini |
---|
116 | |
---|
117 | # |
---|
118 | # ctl-scripts... |
---|
119 | # |
---|
120 | |
---|
121 | [kofactl] |
---|
122 | # See http://pypi.python.org/pypi/zc.recipe.egg for details... |
---|
123 | # Here we create the kofactl script again, this time with a |
---|
124 | # fixed path to zdaemon.conf as argument. |
---|
125 | recipe = zc.recipe.egg |
---|
126 | eggs = waeup.kofa [beaker, diazo] |
---|
127 | arguments = "${buildout:parts-directory}/etc/zdaemon.conf" |
---|
128 | scripts = kofactl=kofactl |
---|