[IMP] doc/howtos/backend: usage of odoo.py

This commit is contained in:
Raphael Collet 2014-08-26 08:58:51 +02:00
parent 415525cecc
commit 8eb6a1128f
1 changed files with 5 additions and 5 deletions

View File

@ -15,11 +15,12 @@ although supporting client features (e.g. new data representation such as
interactive maps) can be added to the client. interactive maps) can be added to the client.
In order to start the server, simply invoke the command :ref:`odoo.py In order to start the server, simply invoke the command :ref:`odoo.py
<reference/cmdline>` in the shell from the Odoo main directory: <reference/cmdline>` in the shell, adding the full path to the file if
necessary:
.. code:: bash .. code:: bash
./odoo.py odoo.py
The server is stopped by hitting ``Ctrl-C`` twice from the terminal, or by The server is stopped by hitting ``Ctrl-C`` twice from the terminal, or by
killing the corresponding OS process. killing the corresponding OS process.
@ -111,7 +112,7 @@ create an empty module:
.. code:: bash .. code:: bash
./odoo.py scaffold <module name> <where to put it> odoo.py scaffold <module name> <where to put it>
The command creates a subdirectory for your module, and automatically creates a 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 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 .. only:: solutions
#. Invoke the command ``./odoo.py scaffold openacademy addons`` in the #. Invoke the command ``odoo.py scaffold openacademy addons``.
Odoo directory.
#. Adapt the manifest file to your module. #. Adapt the manifest file to your module.
#. Don't bother about the other files. #. Don't bother about the other files.