上QQ阅读APP看书,第一时间看更新
The server development mode
In Odoo 10, a new option was introduced, providing developer-friendly features. To use them, start the server instance with the additional option --dev=all.
This enables a few handy features to speed up our development cycle. The most important are:
- Reload Python code automatically once a Python file is saved, avoiding a manual server restart
- Read view definitions directly from the XML files, avoiding manual module upgrades
The --dev option accepts a comma-separated list of options, although the all option will be suitable most of the time. We can also specify the debugger we prefer to use. By default, the Python debugger, pdb, is used. Some people might prefer to install and use alternative debuggers. The other debuggers supported are ipdb and pudb.
The server developer mode requires an additional dependency to be installed, python3-watchdog. Before you can use it in an Ubuntu/Debian system, install:
$ sudo apt-get install python3-watchdog
For versions before Odoo 11 running on Python 2, install python-watchdog instead.