Advertisement
britodfbr

seattleplone_config_devel.cfg

Apr 9th, 2014
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.83 KB | None | 0 0
  1. [buildout]
  2. extends = base.cfg
  3. parts +=
  4.     packages
  5.     zopepy
  6.  
  7. [packages]
  8. recipe = collective.recipe.omelette
  9. eggs = ${instance1:eggs}
  10. products = ${instance1:products}
  11. packages = ${zope2:location}/lib/python ./
  12.  
  13. [ptprofiler]
  14. recipe = plone.recipe.bundlecheckout
  15. url = https://svn.infrae.com/PTProfiler/trunk
  16. subfolder = PTProfiler
  17.  
  18. [zopeprofiler]
  19. recipe = plone.recipe.distros
  20. urls = http://www.dieter.handshake.de/pyprojects/zope/ZopeProfiler.tgz
  21.  
  22. [zptdebugger]
  23. recipe = plone.recipe.bundlecheckout
  24. url = https://svn.plone.org/svn/collective/ZPTDebugger/trunk
  25. subfolder = ZPTDebugger
  26.  
  27. [deadlockdebugger]
  28. recipe = plone.recipe.bundlecheckout
  29. url = http://svn.nuxeo.org/pub/Zope2/DeadlockDebugger/trunk
  30. subfolder = DeadlockDebugger
  31.  
  32. [instance1]
  33. zeo-client = False
  34. eggs +=
  35.     Products.PDBDebugMode
  36.     Products.Clouseau
  37.     Products.DocFinderTab
  38.     Products.Gloworm
  39. http-address = 8080
  40. verbose-security = on
  41. zope-conf-additional =
  42.     zserver-threads 1
  43. debug-mode = on
  44.  
  45. [ipzope]
  46. # a IPython Shell for interactive use with zope running.
  47. # you also need to put
  48. # https://svn.plone.org/svn/collective/dotipython/trunk/ipy_profile_zope.py
  49. # to your $HOME/.ipython directory for the following to work.
  50. recipe = zc.recipe.egg
  51. eggs =
  52.         ipython
  53.         ${instance1:eggs}
  54. initialization =
  55.         import sys, os
  56.         os.environ["SOFTWARE_HOME"] = "${zope2:location}/lib/python"
  57.         os.environ["INSTANCE_HOME"] = "${instance1:location}"
  58.         sys.argv[1:1] = "-p zope".split()
  59. extra-paths = ${zope2:location}/lib/python
  60. scripts = ipython=ipzope
  61.  
  62. [zopepy]
  63. recipe = zc.recipe.egg
  64. eggs = ${instance1:eggs}
  65. interpreter = zopepy
  66. extra-paths = ${zope2:location}/lib/python
  67. scripts = zopepy
  68.  
  69. [roadrunner]
  70. recipe = roadrunner:plone
  71. zope2-instance = instance1
  72. packages-under-test =
  73. # for instance my.*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement