From 887735bd83da23e41cbb67b8c3ac81de1892732a Mon Sep 17 00:00:00 2001 From: Andreas Wabro Date: Mon, 11 Jun 2018 13:28:10 +0200 Subject: [PATCH] Environment AW --- dev/odoo-server-dev-aw.conf | 26 ++++++++++++++++++++++++++ setup/lib/environments.py | 4 ++++ 2 files changed, 30 insertions(+) create mode 100644 dev/odoo-server-dev-aw.conf diff --git a/dev/odoo-server-dev-aw.conf b/dev/odoo-server-dev-aw.conf new file mode 100644 index 00000000..97c3e679 --- /dev/null +++ b/dev/odoo-server-dev-aw.conf @@ -0,0 +1,26 @@ +[options] + +xmlrpc_port = 8080 +; This is the password that allows database operations: +; admin_passwd = admin +db_host = False +db_port = 5432 +db_user = False +db_password = False + +addons_path = ext/odoo/addons,ext/custom-addons,ext/3rd-party-addons,ext/clarico-addons +; For enterprise use the addons path bellow +; addons_path = ext/enterprise-addons,ext/odoo/addons,ext/3rd-party-addons,ext/custom-addons,dmi/run1 +timezone = Europe/Vienna + +#dbfilter_test = ['.*',] +show_debug = 1 + +workers = 0 +server_wide_modules = web,base_sparse_field,queue_job + +portal_url = https://erp.tzaustria.info +portal_secret = secret + +[queue_job] +channels = root:4 \ No newline at end of file diff --git a/setup/lib/environments.py b/setup/lib/environments.py index e0eb137e..177f0f3f 100644 --- a/setup/lib/environments.py +++ b/setup/lib/environments.py @@ -52,6 +52,10 @@ ENVIRONMENTS = { 'ab-tz' : Environment('http://localhost', '8080', 'tz-austria_1', 'tz-admin', 'x', 'admin', config = ConfigTZA()), 'ab-glaser' : Environment('http://localhost', '8080', 'tz-austria_1', 'glaser-admin', 'x', 'admin', config = ConfigGlaser()), + 'aw' : Environment('http://localhost', '8080', 'tz-austria_1', 'admin', 'x', 'admin', config = ConfigTZA()), + 'aw-tz' : Environment('http://localhost', '8080', 'tz-austria_1', 'tz-admin', 'x', 'admin', config = ConfigTZA()), + 'aw-glaser' : Environment('http://localhost', '8080', 'tz-austria_1', 'glaser-admin', 'x', 'admin', config = ConfigGlaser()), + # Remote environments are always listed without passwords! # Do not store them here, you have to type them anyway! 'test': Environment('https://erp.tzaustria.info', '443', 'odoo-test', 'admin', config = ConfigTZA()),