source: main/waeup.diazo/trunk/buildout.cfg @ 10878

Last change on this file since 10878 was 10877, checked in by uli, 11 years ago

Use twitter bs 3.x and shorten buildout updates.

File size: 1.2 KB
Line 
1[buildout]
2parts = 
3    lxml
4    diazo
5    nodejs
6    npm
7    bootstrap
8
9extends =
10    http://good-py.appspot.com/release/diazo/1.0
11    versions.cfg
12
13find-links =
14
15extensions =
16    mr.developer
17
18auto-checkout = bootstrap waeup.kofa
19
20develop =
21
22show-picked-versions = true
23update-versions-file = versions.cfg
24
25[sources]
26# bootstrap = git https://github.com/twitter/bootstrap.git egg=false rev=v2.3.1
27bootstrap = git https://github.com/twbs/bootstrap.git egg=false rev=v3.0.1
28waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/trunk
29
30[lxml]
31recipe = z3c.recipe.staticlxml
32egg = lxml
33
34[diazo]
35recipe = zc.recipe.egg
36eggs =
37    diazo [wsgi]
38    PasteScript
39
40[nodejs]
41recipe = zc.recipe.cmmi
42url = http://nodejs.org/dist/v0.9.3/node-v0.9.3.tar.gz
43
44[npm]
45recipe = plone.recipe.command
46command =
47    cd ${buildout:directory}/src/bootstrap
48    ${buildout:parts-directory}/nodejs/bin/npm install -g grunt-cli
49    ${buildout:parts-directory}/nodejs/bin/npm install
50
51[bootstrap]
52recipe = plone.recipe.command
53command =
54    cd ${buildout:directory}/src/bootstrap && PATH=${buildout:parts-directory}/nodejs/bin/:$PATH && grunt dist && grunt test
55update-command =
56    ${bootstrap:command}
Note: See TracBrowser for help on using the repository browser.