如何使用eclipse同时运行两个版本的odoo?

时间:2017-06-05 08:48:15

标签: eclipse odoo-9 odoo-10

我需要有关odoo的帮助。 如何使用eclipse同时运行两个不同版本的odoo。 odoo版本都适用于不同的端口。

1 个答案:

答案 0 :(得分:2)

为两个项目创建配置文件,如odoo_server.conf文件中的以下内容。使用不同的端口号。

[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = localhost
db_port = 5433
db_user = openerp
db_password = openerp
addons_path = F:\Francis\Workspace\studica\addons
xmlrpc_port=7070
pg_path = E:\santhosh\upsynth_Postgres\bin

然后在Eclipse中为两个项目创建运行配置 enter image description here

然后在两个项目的参数选项卡中添加配置文件路径。 enter image description here

现在,您将能够同时运行具有不同源代码的2个项目。

您可以看到两者的日志,如下所示

enter image description here

Windows和Linux版Eclipse的相同过程