-
Notifications
You must be signed in to change notification settings - Fork 12
/
base-only-odoo.cfg
87 lines (74 loc) · 3.21 KB
/
base-only-odoo.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
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[scripts]
recipe = zc.recipe.egg:scripts
eggs = ${buildout:eggs}
dependent-scripts = true
[initdb]
recipe = iw.recipe.cmd
on_install = true
on_update = true
cmds =
echo "creando base de datos " + ${openerp:options.db_name}
psql -d postgres -U ${settings:postgres_user} -c 'CREATE DATABASE ${openerp:options.db_name}'
${buildout:bin-directory}/upgrade_openerp
[supervisor-cron]
recipe = z3c.recipe.usercrontab
times = @reboot
command = ${buildout:bin-directory}/supervisord -c ${buildout:config-directory}/parts/supervisor/supervisord.conf
[openerp]
recipe = anybox.recipe.openerp[bzr]:server
version = git http://github.com/OCA/OCB.git odoo 2ffe18f6505e798a8d513e2b0c10bbe2726bf23b
addons = git https://github.com/OCA/reporting-engine.git odoo-repos/reporting-engine 8.0
git https://github.com/OCA/l10n-spain.git odoo-repos/spain 8.0
git https://github.com/Pexego/stock-logistic-warehouse.git odoo-repos/stock-logistic-warehouse 8.0
git https://github.com/OCA/partner-contact.git odoo-repos/partner-contac-management 8.0
git https://github.com/Pexego/sale_commission.git odoo-repos/sale_commission master
git https://github.com/Pexego/alimentacion.git odoo-repos/alimentacion 8.0
git https://github.com/OCA/account-invoicing.git odoo-repos/account-invoicing 8.0
git https://github.com/OCA/account-financial-tools.git odoo-repos/account-financial-tools 8.0
git https://github.com/OCA/account-financial-reporting.git odoo-repos/account-financial-reporting 8.0
git https://github.com/OCA/account-fiscal-rule.git odoo-repos/account-fiscal-rule 8.0
git https://github.com/OCA/server-tools.git odoo-repos/server-tools 8.0
git https://github.com/OCA/bank-payment.git odoo-repos/bank-payment 8.0
git https://github.com/OCA/bank-statement-reconcile.git odoo-repos/bank-statement-reconcile 8.0
git https://github.com/OCA/bank-statement-import.git odoo-repos/bank-statement-import 8.0
git https://github.com/OCA/purchase-workflow.git odoo-repos/purchase_workflow 8.0
git https://github.com/OCA/product-attribute.git odoo-repos/product-attribute 8.0
git https://github.com/OCA/web.git odoo-repos/web 8.0
git https://github.com/OCA/server-tools.git odoo-repos/server-tools 8.0
local project-addons
eggs = unidecode
ipdb
pyPdf
xlrd
ofxparse
unicodecsv
pysftp
options.db_host = ${settings:postgres_host}
options.db_name = ${settings:postgres_db_name}
options.admin_passwd = admin
options.db_user = ${settings:postgres_user}
options.db_password = ${settings:postgres_password}
options.db_maxconn = ${settings:postgres_maxconn}
options.db_port = ${settings:postgres_port}
options.xmlrpc_port = ${settings:openerp_xmlrpc_port}
options.xmlrpcs_port = ${settings:openerp_xmlrpcs_port}
[env]
recipe = gocept.recipe.env
[static-analysis]
recipe = zc.recipe.egg
eggs = flake8
[supervisor]
recipe = collective.recipe.supervisor
port = ${settings:supervisor_port}
serverurl = ${settings:supervisor_url}:${supervisor:port}
programs =
10 openerp ${buildout:directory}/bin/start_openerp
[py]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = py
scripts = py