[Checkins] SVN: Sandbox/J1m/buddyapp/ Added the zeo instance recipe.

Jim Fulton jim at zope.com
Thu Jan 11 19:08:25 EST 2007


Log message for revision 71946:
  Added the zeo instance recipe.
  

Changed:
  _U  Sandbox/J1m/buddyapp/
  U   Sandbox/J1m/buddyapp/buildout.cfg
  U   Sandbox/J1m/buddyapp/prod.cfg

-=-

Property changes on: Sandbox/J1m/buddyapp
___________________________________________________________________
Name: svn:externals
   - zope3recipes svn+ssh://svn.zope.org/repos/main/zc.zope3recipes/dev
zope3checkout svn+ssh://svn.zope.org/repos/main/zc.recipe.zope3checkout/trunk
deployment svn+ssh://svn.zope.org/repos/main/zc.recipe.deployment/trunk

   + zope3recipes svn+ssh://svn.zope.org/repos/main/zc.zope3recipes/dev
zope3checkout svn+ssh://svn.zope.org/repos/main/zc.recipe.zope3checkout/trunk
deployment svn+ssh://svn.zope.org/repos/main/zc.recipe.deployment/trunk
rc svn+ssh://svn.zope.org/repos/main/zc.recipe.rhrc/trunk
zeoinst svn+ssh://svn.zope.org/repos/main/zc.recipe.zeo/branches/dev


Modified: Sandbox/J1m/buddyapp/buildout.cfg
===================================================================
--- Sandbox/J1m/buddyapp/buildout.cfg	2007-01-11 22:38:56 UTC (rev 71945)
+++ Sandbox/J1m/buddyapp/buildout.cfg	2007-01-12 00:08:24 UTC (rev 71946)
@@ -1,12 +1,12 @@
 [buildout]
-parts = instance test
-develop = app zope3recipes zope3checkout 
+develop = app zope3recipes zope3checkout zeoinst rc
+parts = test ctl
 find-links = http://download.zope.org/distribution
 
 [instance]
 recipe = zc.zope3recipes:instance
 application = application
-zope.conf = ${database:zconfig}
+zope.conf = ${storage:zconfig}
 
 [test]
 recipe = zc.recipe.testrunner
@@ -35,9 +35,18 @@
                 <include file="ftesting-base.zcml" />
 
 
+[storage]
+recipe = zc.recipe.zeo
+database = database
+
 [database]
 recipe = zc.recipe.filestorage
 
 [zope3]
 recipe = zc.recipe.zope3checkout
 url = svn+ssh://svn.zope.org/repos/main/Zope3/trunk
+
+[ctl]
+recipe = zc.recipe.rhrc
+parts = storage instance
+dest = ${buildout:bin-directory}

Modified: Sandbox/J1m/buddyapp/prod.cfg
===================================================================
--- Sandbox/J1m/buddyapp/prod.cfg	2007-01-11 22:38:56 UTC (rev 71945)
+++ Sandbox/J1m/buddyapp/prod.cfg	2007-01-12 00:08:24 UTC (rev 71946)
@@ -1,6 +1,6 @@
 [buildout]
 develop = deployment zope3recipes
-parts = test-deployment instance
+parts = test-deployment storage instance1 instance
 installed = prod.installed
 buildout:offline = true
 
@@ -11,12 +11,19 @@
 [installed-application]
 location = ${buildout:parts-directory}/application
 
-[instance]
+[instance1]
 recipe = zc.zope3recipes:instance
 application = installed-application
-zope.conf = ${database:zconfig}
+zope.conf = ${storage:zconfig}
 deployment = test-deployment
 
+[instance2]
+recipe = zc.zope3recipes:instance
+application = installed-application
+zope.conf = ${storage:zconfig}
+deployment = test-deployment
+address = 8081
+
 [database]
 recipe = zc.recipe.filestorage
 path = /databases/Data.fs



More information about the Checkins mailing list