From: Raphael Collet Date: Tue, 26 Aug 2014 06:58:51 +0000 (+0200) Subject: [IMP] doc/howtos/backend: usage of odoo.py X-Git-Tag: 8.0.0~262 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=8eb6a1128fbdd9379f1673ea3273d266560fe08d;p=odoo%2Fodoo.git [IMP] doc/howtos/backend: usage of odoo.py --- diff --git a/doc/howtos/backend.rst b/doc/howtos/backend.rst index 10827dd..de96f53 100644 --- a/doc/howtos/backend.rst +++ b/doc/howtos/backend.rst @@ -15,11 +15,12 @@ although supporting client features (e.g. new data representation such as interactive maps) can be added to the client. In order to start the server, simply invoke the command :ref:`odoo.py -` in the shell from the Odoo main directory: +` in the shell, adding the full path to the file if +necessary: .. code:: bash - ./odoo.py + odoo.py The server is stopped by hitting ``Ctrl-C`` twice from the terminal, or by killing the corresponding OS process. @@ -111,7 +112,7 @@ create an empty module: .. code:: bash - ./odoo.py scaffold + odoo.py scaffold The command creates a subdirectory for your module, and automatically creates a bunch of standard files for a module. Most of them simply contain commented code @@ -124,8 +125,7 @@ or XML. The usage of most of those files will be explained along this tutorial. .. only:: solutions - #. Invoke the command ``./odoo.py scaffold openacademy addons`` in the - Odoo directory. + #. Invoke the command ``odoo.py scaffold openacademy addons``. #. Adapt the manifest file to your module. #. Don't bother about the other files.