forked from isaw/isaw.web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevelopment.cfg
113 lines (98 loc) · 2.07 KB
/
development.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[buildout]
extends-cache = cache
extends =
cfg/base.cfg
cfg/sources.cfg
parts +=
# Develop only parts
client1
client2
zeoserver
supervisor
ipzope
zopepy
test
coverage-test
coverage-report
mkrelease
zopeskel
omelette
[client1]
debug-mode = off
verbose-security = off
eggs +=
plone.reload
# Products.PDBDebugMode
[client2]
<= client1
http-address = 8082
[supervisor]
recipe = collective.recipe.supervisor
port = 127.0.0.1:9003
user = admin
password = admin
supervisord-environment =
TMPDIR=${tmp:paths}
programs =
10 zeoserver ${buildout:directory}/parts/zeoserver/bin/runzeo true
20 client1 (autostart=false) ${buildout:directory}/bin/client1 [console] true
20 client2 (autostart=false startsecs=5) ${buildout:directory}/bin/client2 [console] true
[zopepy]
recipe = zc.recipe.egg
eggs =
${client1:eggs}
compoze==1.0
interpreter = zopepy
scripts =
zopepy
compoze
[test-environment]
ISAW_PRODUCTION = False
[test]
recipe = zc.recipe.testrunner
eggs =
${buildout:eggs}
plone.app.imagecropping[test]
plone.app.testing
plone.app.robotframework
robotsuite
# plone.app.contenttypes
defaults = ['--exit-with-status', '--auto-color', '--auto-progress']
environment = test-environment
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--coverage', '../../coverage', '-v', '--auto-progress']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coveragereport
arguments = ('coverage', 'report')
[mkrelease]
recipe = zc.recipe.egg
eggs = jarn.mkrelease
scripts = mkrelease
[zopeskel]
recipe = zc.recipe.egg
eggs =
PasteScript
ZopeSkel
templer.localcommands
templer.dexterity
Plone
${buildout:eggs}
[omelette]
recipe = collective.recipe.omelette
eggs = ${client1:eggs}
[ipzope]
recipe = zc.recipe.egg
eggs =
ipython
${buildout:eggs}
initialization =
import sys, os
os.environ["INSTANCE_HOME"] = "${client1:location}"
sys.argv[1:1] = "--profile=zope".split()
scripts = ipython=ipzope
[versions]
ipython = 0.12