Aufsetzen der Umgebung mit richtigen Daten

develop
Ahmed Aly 2017-11-13 14:31:55 +01:00
parent 72c6add212
commit e241558d14
5 changed files with 21 additions and 4 deletions

View File

@ -0,0 +1,17 @@
[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,dmi/run1
; 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

View File

@ -8,7 +8,7 @@ db_port = 5432
db_user = False
db_password = False
addons_path = ext/odoo/addons,ext/3rd-party-addons,ext/custom-addons,dmi/run1
addons_path = ext/odoo/addons,ext/custom-addons,dmi/run1
; 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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -24,10 +24,10 @@ Port: %s
ENVIRONMENTS = {
# Local environments are listed with passwords
'br': Environment('http://localhost', '8080', 'demo11c_1', 'admin', 'x', 'admin'),
'aa': Environment('http://localhost', '8080', 'demo11c_1', 'admin', 'x', 'admin'),
'br': Environment('http://localhost', '8080', 'tz-austria_1', 'admin', 'x', 'admin'),
'aa': Environment('http://localhost', '8080', 'tz-austria_1', 'admin', 'x', 'admin'),
# Remote environments are always listed without passwords!
# Do not store them here, you have to type them anyway!
'test': Environment('https://demo11c_1.datenpol.at', '443', 'demo11c_1', 'admin'),
'test': Environment('https://tz-austria.datenpol.at', '443', 'tz-austria_1', 'admin'),
}