-
Notifications
You must be signed in to change notification settings - Fork 4
/
common.cfg
57 lines (48 loc) · 1.66 KB
/
common.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
[buildout]
extensions =
mr.developer
parts = mkdir
openerp
supervisor
versions = versions
sources = sources
auto-checkout = *
[sources]
anybox.recipe.odoo = git https://github.com/leorochael/anybox.recipe.odoo.git branch=leorochael-drop-pychart
[mkdir]
recipe = z3c.recipe.mkdir
paths =
specific-parts/specific-addons
[openerp]
recipe = anybox.recipe.odoo:server
version = git https://github.com/odoo/odoo.git odoo 8.0 depth=1
with_devtools = True
addons =
local specific-parts/specific-addons
git https://github.com/kmee/web_selenium.git parts/web_selenium 8.0
git https://github.com/oca/l10n-brazil.git parts/l10n-brazil 8.0
git https://github.com/oca/server-tools.git parts/server-tools 8.0
git https://github.com/oca/account-fiscal-rule.git parts/account-fiscal-rule 8.0
git https://github.com/oca/reporting-engine.git parts/reporting-engine 8.0
openerp_scripts =
ipython command-line-options=-d arguments=user_ns=dict(session=session)
eggs =
ipython
suds
[versions]
pyparsing = 2.1.10
[supervisor]
recipe = collective.recipe.supervisor
http-socket = unix
file = ${buildout:directory}/var/supervisord.sock
; port = 127.0.0.1:9001
supervisord-conf = ${buildout:directory}/etc/supervisord.conf
logfile = ${buildout:directory}/var/log/supervisord.log
pidfile = ${buildout:directory}/var/supervisord.pid
loglevel = info
logfile_openerp = ${buildout:directory}/var/log/openerp-stdout.log
programs =
10 openerp (autostart=true) "${buildout:directory}/bin/start_openerp" [ --logfile "${:logfile_openerp}"] ${buildout:directory} true
# add access on supervisord.sock for the group so other users can interact with
# supervisorctl
chmod = 0770