| 1 | [buildout] |
|---|
| 2 | extends = |
|---|
| 3 | buildout.cfg |
|---|
| 4 | |
|---|
| 5 | parts = |
|---|
| 6 | zope2 |
|---|
| 7 | productdistros |
|---|
| 8 | fss |
|---|
| 9 | zopepy |
|---|
| 10 | zeoserver |
|---|
| 11 | instance1 |
|---|
| 12 | instance2 |
|---|
| 13 | debug-instance |
|---|
| 14 | plonesite |
|---|
| 15 | test |
|---|
| 16 | test-coverage |
|---|
| 17 | coverage-report |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | # Do not load any development eggs |
|---|
| 21 | develop = |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | [zeoserver] |
|---|
| 25 | recipe = plone.recipe.zope2zeoserver |
|---|
| 26 | zope2-location = ${instance:zope2-location} |
|---|
| 27 | zeo-address = ${instance:zeo-address} |
|---|
| 28 | |
|---|
| 29 | [instance1] |
|---|
| 30 | recipe = collective.recipe.zope2cluster |
|---|
| 31 | instance-clone = instance |
|---|
| 32 | zope2-location = ${zope2:location} |
|---|
| 33 | zeo-client = true |
|---|
| 34 | zeo-address = ${zeoserver:zeo-address} |
|---|
| 35 | debug-mode = off |
|---|
| 36 | verbose-security = off |
|---|
| 37 | zodb-cache-size = 5000 |
|---|
| 38 | zeo-client-cache-size = 300MB |
|---|
| 39 | http-address = 8080 |
|---|
| 40 | effective-user = educommons |
|---|
| 41 | zodb-temporary-storage = |
|---|
| 42 | <zodb_db temporary> |
|---|
| 43 | <zeoclient> |
|---|
| 44 | server 127.0.0.1:8100 |
|---|
| 45 | storage temp |
|---|
| 46 | name zeostorage |
|---|
| 47 | var ${buildout.directory}/var/filestorage |
|---|
| 48 | </zeoclient> |
|---|
| 49 | mount-point /temp-folder |
|---|
| 50 | container-class Products.TemporaryFolder.TemporaryContainer |
|---|
| 51 | </zodb_db> |
|---|
| 52 | eggs += Products.CacheSetup |
|---|
| 53 | environment-vars = |
|---|
| 54 | PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs |
|---|
| 55 | |
|---|
| 56 | [instance2] |
|---|
| 57 | recipe = collective.recipe.zope2cluster |
|---|
| 58 | instance-clone = instance |
|---|
| 59 | zope2-location = ${zope2:location} |
|---|
| 60 | zeo-client = true |
|---|
| 61 | zeo-address = ${zeoserver:zeo-address} |
|---|
| 62 | debug-mode = off |
|---|
| 63 | verbose-security = off |
|---|
| 64 | zodb-cache-size = 5000 |
|---|
| 65 | zeo-client-cache-size = 300MB |
|---|
| 66 | http-address = 8081 |
|---|
| 67 | effective-user = educommons |
|---|
| 68 | zodb-temporary-storage = ${instance1:zodb-temporary-storage} |
|---|
| 69 | eggs = ${instance1:eggs} |
|---|
| 70 | environment-vars = ${instance1:environment-vars} |
|---|
| 71 | |
|---|
| 72 | [debug-instance] |
|---|
| 73 | recipe = collective.recipe.zope2cluster |
|---|
| 74 | instance-clone = instance |
|---|
| 75 | http-address = 8090 |
|---|
| 76 | debug-mode = on |
|---|
| 77 | verbose-security = on |
|---|
| 78 | |
|---|
| 79 | [plonesite] |
|---|
| 80 | recipe = collective.recipe.plonesite |
|---|
| 81 | site-id = eduCommons |
|---|
| 82 | instance = instance |
|---|
| 83 | zeoserver = zeoserver |
|---|
| 84 | profiles = |
|---|
| 85 | collective.plonebookmarklets:default |
|---|
| 86 | collective.contentlicensing:default |
|---|
| 87 | collective.imstransport:default |
|---|
| 88 | collective.jaop:default |
|---|
| 89 | collective.oaiintercom:default |
|---|
| 90 | collective.searchandreplace:default |
|---|
| 91 | collective.zipfiletransport:default |
|---|
| 92 | enpraxis.leftskin:default |
|---|
| 93 | enpraxis.staticsite:default |
|---|
| 94 | enpraxis.educommons:default |
|---|
| 95 | enpraxis.wordpressexchange:default |
|---|
| 96 | iw.fss:default |
|---|
| 97 | Products.CMFPlacefulWorkflow:CMFPlacefulWorkflow |
|---|
| 98 | plone.app.iterate:plone.app.iterate |
|---|
| 99 | Products.CacheSetup:default |
|---|
| 100 | Products.LinguaPlone:LinguaPlone |
|---|
| 101 | |
|---|
| 102 | [fss] |
|---|
| 103 | recipe = iw.recipe.fss |
|---|
| 104 | zope-instances = |
|---|
| 105 | ${instance:location} |
|---|
| 106 | storages = |
|---|
| 107 | global / directory ${buildout:directory}/var/fss_storage ${buildout:directory}/var/fss_backup |
|---|
| 108 | |
|---|
| 109 | |
|---|