forked from infrae/collective.elasticindex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
30 lines (24 loc) · 717 Bytes
/
buildout.cfg
File metadata and controls
30 lines (24 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[buildout]
extends = https://raw.github.com/collective/buildout.plonetest/master/plone-4.3.x.cfg
develop = .
parts += elasticsearch
run_es
omelette
[instance]
eggs += collective.elasticindex
zcml += collective.elasticindex
[versions]
six = 1.6.1
[elasticsearch]
recipe = koansys.recipe.elasticsearch
url = https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.3.tar.gz
[run_es]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
ES_INCLUDE=${buildout:parts-directory}/elasticsearch/bin/elasticsearch.in.sh bin/elasticsearch
output = ${buildout:bin-directory}/run_es
mode = 755
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}