[Checkins] SVN: zc.z3monitor/trunk/buildout.cfg Got a test instance working w zeo.

Jim Fulton jim at zope.com
Thu Nov 15 16:06:09 EST 2007


Log message for revision 81857:
  Got a test instance working w zeo.
  

Changed:
  U   zc.z3monitor/trunk/buildout.cfg

-=-
Modified: zc.z3monitor/trunk/buildout.cfg
===================================================================
--- zc.z3monitor/trunk/buildout.cfg	2007-11-15 20:33:49 UTC (rev 81856)
+++ zc.z3monitor/trunk/buildout.cfg	2007-11-15 21:06:08 UTC (rev 81857)
@@ -1,10 +1,50 @@
 [buildout]
 develop = .
-parts = instance test
+parts = instance test zodb storage
 
+[zodb]
+recipe = zc.recipe.egg
+eggs = ZODB3 <3.9dev
+
 [app]
 recipe = zc.zope3recipes:application
 eggs = zc.z3monitor
+       zope.app.zcmlfiles
+       zope.app.server
+       setuptools
+       zc.configuration
+       ZODB3
+       zope.annotation
+       zope.app.appsetup
+       zope.app.authentication
+       zope.app.catalog
+       zope.app.component
+       zope.app.container
+       zope.app.folder
+       zope.app.intid
+       zope.app.keyreference
+       zope.app.publication
+       zope.app.security
+       zope.app.securitypolicy
+       zope.app.session
+       zope.app.testing
+       zope.app.testing
+       zope.app.zcmlfiles
+       zope.component
+       zope.event
+       zope.formlib
+       zope.i18nmessageid
+       zope.interface
+       zope.lifecycleevent
+       zope.locking
+       zope.proxy
+       zope.testing
+       zope.sendmail
+
+
+
+
+
 servers = zserver
 site.zcml =
   <include package="zope.app.zcmlfiles" />
@@ -40,12 +80,29 @@
 recipe = zc.zope3recipes:instance
 application = app
 zope.conf =
-   ${database:zconfig}
    <product-config zc.z3monitor>
       port 8000
    </product-config>
+   <zodb>
+    <zeoclient>
+       server 8100
+       cache-size 100KB
+    </zeoclient>
+   </zodb>
 
-[database]
+
+[storage]
+recipe = zc.zodbrecipes:server
+zeo.conf =
+  <zeo>
+     address 8100
+  </zeo>
+  <filestorage 1>
+     path ${data:path}
+  </filestorage>
+
+
+[data]
 recipe = zc.recipe.filestorage
 
 [test]



More information about the Checkins mailing list