16 lines
498 B
Markdown
16 lines
498 B
Markdown
# Custom Odoo addons
|
|
|
|
Place custom Odoo 17 modules in this directory. It is mounted in the Odoo
|
|
container at `/mnt/extra-addons`.
|
|
|
|
After changing Python or XML files, restart Odoo and upgrade the module:
|
|
|
|
```powershell
|
|
docker compose restart odoo
|
|
docker compose exec odoo odoo -c /etc/odoo/odoo.conf -d <database> -u theme_aarthalabs --stop-after-init
|
|
docker compose up -d odoo
|
|
```
|
|
|
|
SCSS and JavaScript assets normally reload automatically because the Compose
|
|
service starts Odoo with `--dev=all`.
|