- Explain how to use script and fork - Add discover guide - Improve all documentation
791 B
791 B
Execute ERPLibre
Start database
sudo systemctl start postgresql.service
Run ERPLibre
Method 1
Simply
./run.sh
With arguments
./run.sh -h
Method 2
Execute your own python script:
source ./venv/bin/activate
python odoo/odoo-bin -c config.conf --log-level debug
Update all
Great idea to run it when updating Odoo, it updates database of each modules.
python odoo/odoo-bin -c config.conf -d [DATABASE] -u all --log-level debug
Update module
python odoo/odoo-bin -c config.conf -d [DATABASE] -u [module] --log-level debug
Test
python odoo/odoo-bin -c config.conf -d [DATABASE] -i [module to test] --test-enable --stop-after-init --log-level=test --test-tags [module_name][tags]