-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
develop.cfg
50 lines (43 loc) · 1.06 KB
/
develop.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
[buildout]
extends =
http://dist.plone.org/release/4.3-latest/versions.cfg
sphinx.cfg
versions.cfg
versions = versions
parts +=
instance
test
robot
develop = .
extensions = mr.developer
auto-checkout = *
[sources]
# Looks like, `develop = .` doesn't work here - buildout is downloading the
# plone.app.widgets 1.5.0 egg. So we checkout plone.app.widgets to the buildout
# directory path.
plone.app.widgets = git [email protected]:plone/plone.app.widgets.git branch=master full-path=${buildout:directory}
[robot]
recipe = zc.recipe.egg
eggs =
${test:eggs}
robotframework-debuglibrary
plone.app.robotframework[reload]
scripts =
robot-server
robot
[instance]
recipe = plone.recipe.zope2instance
blob-storage = ${buildout:directory}/var/blobstorage
user = admin:admin
http-address = 8080
debug-mode = on
verbose-security = on
interpreter = instance-python
eggs =
Pillow
Plone
plone.app.widgets[dexterity]
[test]
recipe = zc.recipe.testrunner
eggs = plone.app.widgets[test,dexterity]
defaults = ['--auto-color', '--auto-progress']