-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
90 lines (75 loc) · 1.96 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
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
[buildout]
parts =
no_cfg_specified
# network speedup
socket-timeout = 3
allow-hosts =
pypi.upc.edu
*.python.org
docutils.sourceforge.net
prdownloads.sourceforge.net
effbot.org
pypi.org
*.pythonhosted.org
find-links = http://pypi.upc.edu/links
eggs =
plone.reload
Products.PrintingMailHost
Products.PloneLDAP
ipdb
developeggs =
develop =
extensions = mr.developer
always-checkout = false
auto-checkout = ${buildout:developeggs}
[instance]
recipe = plone.recipe.zope2instance
http-address = 11005
user = admin:admin
blob-storage = var/blobstorage
effective-user = plone
eggs =
Plone
Pillow
${buildout:eggs}
${buildout:developeggs}
environment-vars =
PTS_LANGUAGES ca es en
zope_i18n_allowed_languages ca es en
zope_i18n_compile_mo_files true
ldapbindpasswd ${ldapconfig:bindpasswd}
alt_ldap_uri ${ldapconfig:alt_ldap_uri}
alt_bind_dn ${ldapconfig:alt_bind_dn}
alt_bindpasswd ${ldapconfig:alt_bindpasswd}
alt_base_dn ${ldapconfig:alt_base_dn}
PYTHONWARNINGS ignore
varnish_url ${deployment:varnish_url}
varnish_to_ban ${deployment:varnish_to_ban}
dorsal ${deployment:dorsal}
# This is important for the workflow translations to be picked up!
zcml =
[filestorage]
# For enable ZODB mount points in the development buildout
# for testing and debug purposes
recipe = collective.recipe.filestorage
parts = 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
location = var/filestorage/Data_%(fs_part_name)s.fs
blob-storage = var/blobstorage/%(fs_part_name)s
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
ulearn5.core[test]
ulearn5.theme[test]
base5.core[test]
mrs5.max[test]
hub5.client[test]
[i18ndude]
recipe = zc.recipe.egg
eggs = i18ndude
[no_cfg_specified]
recipe = collective.recipe.cmd
on_install = true
on_update = true
cmds = echo "Remember to invoke the -c name_of_the_project.cfg according to your needs.\n"
echo "For example: ./bin/buildout -c ulearn.cfg\n"