forked from Sinar/sinarngo.buildout
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuildout.cfg
157 lines (139 loc) · 4.39 KB
/
buildout.cfg
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
[buildout]
index = https://pypi.python.org/simple
parts =
instance
omelette
scripts
releaser
copydata
extends =
http://dist.plone.org/release/4.3.3/versions.cfg
versions.cfg
effective-user = plone
show-picked-versions = true
versions = versions
find-links =
https://pypi.afterfivetech.com/packages/
# ============================================== Start
# These settings will be overridden with OpenShift's environment variables
# during deployment
log-directory = ${buildout:directory}/var/log/
data-directory = ${buildout:directory}/var
pyeggcache-directory = ${buildout:directory}/var/egg-cache
http-address = 8080
# ================================================ End
policies =
idwf.policy
c189.policy
hotfixes =
Products.PloneHotfix20171128
Products.PloneHotfix20170117
Products.PloneHotfix20161129
Products.PloneHotfix20160830
Products.PloneHotfix20160419
Products.PloneHotfix20151208
Products.PloneHotfix20150910
plone4.csrffixes == 1.0.6 # hotfix 20151006
extensions =
# buildout.dumppickedversions
mr.developer
sources-dir = dev/
auto-checkout = *
[sources]
idwf.policy = git https://github.com/IDWF/idwf.policy
idwf.affiliate = git https://github.com/IDWF/idwf.affiliate
idwf.thematic = git https://github.com/IDWF/idwf.thematic
idwfed.theme = git https://github.com/afterfivetech/idwfed.theme
sinarngo.campaign = git https://github.com/Sinar/sinarngo.campaign
sinarngo.story = git https://github.com/Sinar/sinarngo.story
sinarngo.resource = git https://github.com/IDWF/sinarngo.resource
sinarngo.service = git https://github.com/Sinar/sinarngo.service
sinarngo.pressroom = git https://github.com/Sinar/sinarngo.pressroom
sinarngo.multiviews = git https://github.com/Sinar/sinarngo.multiviews
sinarngo.location = git https://github.com/IDWF/sinarngo.location
collective.megaphone = git https://github.com/collective/collective.megaphone
plone.jsonapi.routes = git https://github.com/inigoconsulting/plone.jsonapi.routes branch=master
ploneun.vocabulary = git https://github.com/IDWF/ploneun.vocabulary
c189.policy = git https://github.com/ploneUN/c189.policy
ilo.socialsticker = git https://github.com/ploneUN/ilo.socialsticker
ilo.pledge = git https://github.com/ploneUN/ilo.pledge
[mr.developer]
threads = 1
[instance]
recipe = plone.recipe.zope2instance
eggs =
Plone
Pillow
plone.app.dexterity [grok]
plone.app.theming
plone.app.async
Products.ContentWellPortlets
Products.feedfeeder
eea.facetednavigation
collective.contentleadimage
collective.plonetruegallery
collective.ptg.galleriffic
collective.ptg.nivoslider
collective.ptg.nivogallery
collective.documentviewer
collective.portlet.collectionmultiview
wcc.prayercycle
webcouturier.dropdownmenu
collective.geo.bundle[dexterity]
collective.geo.flexitopic
collective.documentviewer
Solgema.fullcalendar
collective.unslider
collective.quickupload
collective.cover
plonetheme.bootstrap
plone.formwidget.recaptcha
collective.akismet
collective.z3cform.norobots
Products.RedirectionTool
Products.EasyNewsletter[all]
sc.social.like
collective.addthis
idwf.affiliate
sinarngo.story
sinarngo.campaign
sinarngo.service
sinarngo.resource
sinarngo.pressroom
sinarngo.multiviews
sinarngo.location
zope.app.component
plone.app.multilingual
plone.jsonapi.routes
plone.app.contenttypes
collective.recipe.rsync
ipdb
${buildout:policies}
${buildout:hotfixes}
http-address = ${buildout:http-address}
user = admin:admin
effective-user = ${buildout:effective-user}
environment-vars =
PYTHON_EGG_CACHE ${buildout:pyeggcache-directory}
zodb-cache-size = 3000
event-log = ${buildout:log-directory}/${:_buildout_section_name_}.log
z2-log = ${buildout:log-directory}/${:_buildout_section_name_}-Z2.log
file-storage = ${buildout:data-directory}/filestorage/Data.fs
blob-storage = ${buildout:data-directory}/blobstorage/
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[copydata]
recipe = collective.recipe.rsync
source = ${buildout:directory}/var
target = /var/backup/idwf
script=true
[scripts]
recipe = zc.recipe.egg
interpreter = zopepy
eggs = ${instance:eggs}
[releaser]
recipe = collective.recipe.template
input = templates/releaser.py.in
output = ${buildout:bin-directory}/releaser.py
auto-release = ${buildout:auto-checkout}