Skip to content
Luis Felipe Miléo edited this page Sep 12, 2015 · 1 revision

Welcome to the odoo-brazil-buildout wiki!

  1. Crie um diretorio: mkdir projeto
  2. Acesse o diretório cd projeto
  3. Baixe o https://github.com/buildout/buildout wget https://bootstrap.pypa.io/bootstrap-buildout.py
  4. Crie um arquivo chamado buildout.cfg e cole o conteúdo abaixo: nano buildout.cfg

`

[buildout]
extends = https://raw.githubusercontent.com/odoo-brazil/odoo-brazil-buildout/master/default.cfg
versions = versions
find-links = http://download.gna.org/pychart/
[odoo]
recipe = anybox.recipe.odoo:server

addons = local parts/server/addons
	 local specific-parts/specific-addons

options.without_demo = True
options-web.company.url = 'http://odoobrazil.org'
options.xmlrpc_port = 8069
options.list_db = True
options.log_handler = :INFO,openerp.addons.runbot:INFO,werkzeug:WARNING,requests:WARNING
options.db_name = False

[erp_global]
project = odoo-brazil
version = 8.0
current_instance_name= odoo
current_instance = ${erp_global:current_instance_name}
instance_name = ${erp_global:current_instance_name}

[versions]
behave = 1.2.4
erppeek = 1.6
babel = 1.3
psutils = 2.1.3

[python]
eggs += matplotlib
     gevent
     gevent_psycopg2
     psycogreen
     gdata

[addons_version]
server =  8.0
l10n-brazil = 8.0
odoo-brazil-eletronic-documents = 8.0
account-fiscal-rule = 8.0
#        Community addons
server-tools = 8.0

`

  1. Execute os comandos:
  • python bootstrap-buildout.py
  • bin/buildout
  1. Execute o Odoo
  • bin/start_odoo
Clone this wiki locally