Zope ZODB customization file
File contents
# ZODB customization file -
# Expects environment variable settings that izctl.py provides.
import ZEO.ClientStorage, os, string
host=os.environ.get('ZEO_SERVER_NAME', '')
port=string.atoi(os.environ['ZEO_SERVER_PORT'])
Storage=ZEO.ClientStorage.ClientStorage(
(host, port), name='ZEO Demo')