9.0 migration of server_environment
This commit is contained in:
parent
41f1458732
commit
56ffc46f11
|
|
@ -0,0 +1,75 @@
|
||||||
|
.. image:: https://img.shields.io/badge/licence-GPL--3-blue.svg
|
||||||
|
:target: http://www.gnu.org/licenses/gpl-3.0-standalone.html
|
||||||
|
:alt: License: GPL-3
|
||||||
|
|
||||||
|
=================================
|
||||||
|
server environment files (sample)
|
||||||
|
=================================
|
||||||
|
|
||||||
|
This is an example module to be used for
|
||||||
|
`server_environment_files`. Check that module's README for more
|
||||||
|
information.
|
||||||
|
|
||||||
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
|
Do not install this module as is. Copy it to a directory in your
|
||||||
|
addons-path and rename it to
|
||||||
|
`server_environment_files`, then edit the various configurations.
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
This module is not testable on runbot (see above).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Bug Tracker
|
||||||
|
===========
|
||||||
|
|
||||||
|
Bugs are tracked on `GitHub Issues
|
||||||
|
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
|
||||||
|
check there if your issue has already been reported. If you spotted it first,
|
||||||
|
help us smashing it by providing a detailed and welcomed `feedback
|
||||||
|
<https://github.com/OCA/
|
||||||
|
server-tools/issues/new?body=module:%20
|
||||||
|
server_environment%0Aversion:%20
|
||||||
|
9.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Images
|
||||||
|
------
|
||||||
|
|
||||||
|
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
------------
|
||||||
|
|
||||||
|
* Alexandre Fayolle <alexandre.fayolle@camptocamp.com>
|
||||||
|
* Daniel Reis <dgreis@sapo.pt>
|
||||||
|
* Florent Xicluna <florent.xicluna@gmail.com>
|
||||||
|
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||||
|
* Holger Brunn <hbrunn@therp.nl>
|
||||||
|
* Joël Grand-Guillaume <joel.grandguillaume@camptocamp.com>
|
||||||
|
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
|
||||||
|
* Wingo
|
||||||
|
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||||
|
|
||||||
|
|
||||||
|
Maintainer
|
||||||
|
----------
|
||||||
|
|
||||||
|
.. image:: https://odoo-community.org/logo.png
|
||||||
|
:alt: Odoo Community Association
|
||||||
|
:target: https://odoo-community.org
|
||||||
|
|
||||||
|
This module is maintained by the OCA.
|
||||||
|
|
||||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||||
|
mission is to support the collaborative development of Odoo features and
|
||||||
|
promote its widespread use.
|
||||||
|
|
||||||
|
To contribute to this module, please visit https://odoo-community.org.
|
||||||
|
|
@ -21,29 +21,14 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Example server configuration environment files repository module",
|
"name": "Example server configuration environment files repository module",
|
||||||
"version": "8.0.1.0.0",
|
"version": "9.0.1.0.0",
|
||||||
"depends": ["base"],
|
"depends": ["base"],
|
||||||
"author": "Camptocamp,Odoo Community Association (OCA)",
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
"description": """\
|
"summary": "sample config file for server_environment",
|
||||||
File store for environment file sample module
|
|
||||||
=============================================
|
|
||||||
|
|
||||||
This module provides a file store for classical configuration by
|
|
||||||
environment file pattern into OpenERP provided by the
|
|
||||||
`server_environment` addon. Please look at this module for more info
|
|
||||||
and doc.
|
|
||||||
|
|
||||||
Note: you should not install this module 'as is', since it is an
|
|
||||||
example module, but rather adapt it to your needs, and ensure your
|
|
||||||
version of the module gets picked up by OpenERP. This can be ensured
|
|
||||||
by putting the directory where your version of
|
|
||||||
server_environment_files lives before this one in the addons-path
|
|
||||||
variable of the OpenERP configuration file.
|
|
||||||
""",
|
|
||||||
"website": "http://www.camptocamp.com",
|
"website": "http://www.camptocamp.com",
|
||||||
"license": "GPL-3 or any later version",
|
"license": "GPL-3 or any later version",
|
||||||
"category": "Tools",
|
"category": "Tools",
|
||||||
"data": [],
|
"data": [],
|
||||||
'installable': False,
|
'installable': True,
|
||||||
"active": False,
|
"active": False,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue