Advertisement
britodfbr

seattleplone_config_base.cfg

Apr 9th, 2014
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1. [buildout]
  2. extensions +=
  3.     mr.developer
  4. extends =
  5.     versions.cfg
  6.  
  7. parts =
  8.     productdistros
  9.     zope2
  10.     instance1
  11.     z3c.offlinepack
  12.  
  13. find-links =
  14.     http://dist.plone.org
  15.     http://dist.plone.org/thirdparty
  16.     http://download.zope.org/ppix/
  17.     http://download.zope.org/distribution/
  18.     http://effbot.org/downloads
  19.  
  20. versions = versions
  21.  
  22. eggs =
  23. << your product eggs here >>
  24.  
  25. develop =
  26.  
  27. sources = sources
  28. auto-checkout =
  29. << your development product eggs here >>
  30.  
  31. [sources]
  32. << my.product = svn https://svn.acme.com/myProduct/...  >>
  33.  
  34. [zope2]
  35. recipe = plone.recipe.zope2install
  36. fake-zope-eggs = true
  37. additional-fake-eggs =
  38.     ZConfig
  39.     ZODB3
  40.     zdaemon
  41.     pytz
  42.     Acquisition
  43.  
  44. skip-fake-eggs =
  45.  
  46. [productdistros]
  47. recipe = plone.recipe.distros
  48.  
  49. [instance1]
  50. recipe = plone.recipe.zope2instance
  51. zope2-location = ${zope2:location}
  52. user = admin:secret
  53. http-address = 127.0.0.1:8080
  54. zcml-eggs =
  55.     Products.CacheSetup
  56. << ... >>
  57. eggs =
  58. << ... >>
  59.     ${buildout:eggs}
  60.     elementtree
  61.     PILwoTk
  62.     Plone
  63.     ${instance1:zcml-eggs}
  64. zcml =
  65.     ${instance1:zcml-eggs}
  66. products =
  67.     ${buildout:directory}/products
  68.     ${productdistros:location}
  69.  
  70.  
  71. [z3c.offlinepack]
  72. recipe = zc.recipe.egg:scripts
  73. extra-paths = ${zope2:location}/lib/python
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement