forked from collective/collective.pfg.signup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
60 lines (54 loc) · 1.2 KB
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[buildout]
parts = instance omelette test ipzope
extends =
http://dist.plone.org/release/4.2-latest/versions.cfg
versions = versions
unzip = true
develop = .
[versions]
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Pillow
Plone
plone.reload
plone.app.debugtoolbar
Products.PloneFormGen
collective.pfg.signup
collective.pluggablelogin
collective.pfg.soup
collective.pfg.sqladapter
collective.pfg.payment
collective.portlet.itemview
zcml =
collective.pfg.signup
plone.reload
[scripts]
recipe = zc.recipe.egg
eggs =
collective.pfg.signup
jarn.mkrelease
ZopeSkel
PasteScript
PasteDeploy
Paste
templer.plone
templer.plone.localcommands
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[test]
recipe = zc.recipe.testrunner
defaults = ['--tests-pattern', '^f?tests$', '-v']
eggs = collective.pfg.signup [test]
[ipzope]
recipe = zc.recipe.egg
eggs = ipython ${instance:eggs}
initialization =
import sys, os
os.environ["INSTANCE_HOME"] = "${instance:location}"
argv_len = len(sys.argv)
sys.argv[argv_len:argv_len] = "--profile=zope2".split()
scripts = ipython=ipzope