- group_school_administrator now includes base.user_admin, matching core Odoo's own convention (see hr.group_hr_manager) - otherwise every fresh install requires a manual trip to Settings > Users just to see this module's own menus. - odoo.conf: drop db_name. Found by hand while testing: when db_name is set and dbfilter is not, Odoo's list_dbs() returns db_name's value verbatim instead of querying postgres, so the database selector shows only that one database no matter how many actually exist. Silently breaks O9's "swap to the second demo school in under five minutes" requirement, which depends on switching between multiple real databases. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
15 lines
595 B
Plaintext
15 lines
595 B
Plaintext
[options]
|
|
addons_path = /mnt/extra-addons/mc,/mnt/extra-addons/oca,/usr/lib/python3/dist-packages/odoo/addons
|
|
admin_passwd = changeme_master_2026
|
|
db_host = db
|
|
db_port = 5432
|
|
db_user = odoo
|
|
db_password = changeme_db_2026
|
|
proxy_mode = False
|
|
list_db = True
|
|
# Deliberately no db_name here: when db_name is set and dbfilter is not,
|
|
# Odoo's list_dbs() returns db_name's value verbatim instead of querying
|
|
# postgres - the database selector then shows only that one name no
|
|
# matter how many databases actually exist. O9's "swap to the second
|
|
# demo school in under five minutes" needs the real list.
|