Search code examples
odooodoo-10

Where is the config file in Odoo 10 (Windows+Eclipse IDE)?


I am trying to debug Odoo 10 in windows using eclipse and i can't find where is the config file. In previous versions there was a file called 'openerp-server.conf' but i can't find it in Odoo 10.

I am cloning a repo from github : github.com/odoo/odoo.git and there isn't odoo.conf.

Also, I need to know which is the start file to begin with the debug.

thanks..


Solution

  • create a file yourself, copy the below code into the file and save the file with .conf extension. Ex: odoo.conf

     [options]
        ; This is the password that allows database operations:
        ; admin_passwd = admin
        db_host = localhost
        db_port = 5433
        db_user = odoo
        db_password = odoo
        xmlrpc_port=1234
        addons_path =F:\Workspace\odoo-10.0-20161005\odoo\addons,F:\Workspace\odoo-10.0-20161005\custom_addons