diff --git a/makefile-installation.md b/makefile-installation.md index a0ce712..de90f78 100644 --- a/makefile-installation.md +++ b/makefile-installation.md @@ -78,7 +78,7 @@ dependencies: cd ./odoo; pip3 install setuptools wheel; pip3 install -r requirements.txt - pip3 install watchdog + pip3 install watchdog .ONESHELL: addons: @@ -91,17 +91,20 @@ addons: .ONESHELL: initodoo: cd ./odoo - python3 odoo-bin --addons-path=addons,../lokavaluto-addons -i base -d $$USER --stop-after-init + python3 odoo-bin --addons-path=addons,../lokavaluto-addons -i base,l10n_fr -d $$USER --stop-after-init # make run .ONESHELL: run: runfirefox runodoo +# -u : Upgrade specified modules on restart +# --dev all : restart server on py change +# --log-handler : Adds more information in log .ONESHELL: runodoo: cd ./odoo - python3 odoo-bin --addons-path=addons,../lokavaluto-addons + python3 odoo-bin --addons-path=addons,../lokavaluto-addons -u lcc_exchange_counters --dev all --log-handler :DEBUG runfirefox: firefox http://localhost:8069?debug= &