-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.cfg
59 lines (44 loc) · 1.02 KB
/
init.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
[buildout]
installed = .init.cfg
extensions =
buildout.umask
umask = 027
parts =
usage
extends =
versions/local-manual.cfg
versions = versions
[usage]
recipe = collective.recipe.cmd:py
on_install = true
on_update = true
cmds =
print """Usage:
\t
$ buildout -c init.cfg install <purpose>
\t
Where <purpose> can be either 'development', 'testing' or 'production'."""
##
# Default values for options configurable when initializing the
# buildout.
#
[options]
admin_user = admin
# The minimum length is 32
pwd_length = 32
# How many Zope2 instances to have, if this option is left empty, the
# number of CPU cores available to the system is taken.
instances =
base_port = 8000
[buildout_template]
recipe = collective.recipe.template[genshi]:genshi
input = ${buildout:directory}/templates/buildout.cfg.in
output = ${buildout:directory}/buildout.cfg
purpose = ${:_buildout_section_name_}
mode = 0640
[development]
<= buildout_template
[testing]
<= buildout_template
[production]
<= buildout_template