How to define custom module as server wide module ?
First : if we are running the server from command line directly we must use --load with the running command
eg : ./odoo-bin --addons-path='/opt/test/odoo-14.0/addons' --load=base,web,custom_web
Second : if we add odoo as service and created configuration file we can add server_wide_modules inside the configuration file
eg :
[options]
; This is the password that allows database operations:
admin_passwd = master_admin@ssc
db_host = False
server_wide_modules = base,web,custom_web
db_port = False
db_user = test
db_password = False
addons_path = /opt/test/odoo/addons
logfile = /var/log/test/odoo-test.log
http_port = 8080
limit_request = 8192
limit_time_cpu = 600
limit_time_real = 120000
No comments:
Post a Comment