Merge pull request #4 from guewen/add-load-readme

Document --load option for some addons
This commit is contained in:
Guewen Baconnier
2016-11-14 08:29:51 +01:00
committed by GitHub
co-authored by GitHub
3 changed files with 20 additions and 0 deletions
+12
View File
@@ -27,6 +27,18 @@ python-json-logger==0.1.5
statsd==3.2.1 statsd==3.2.1
``` ```
### Odoo Startup
The `--load` option of Odoo must contains the following addons:
* `attachment_s3`
* `session_redis`
* `logging_json`
Example:
`--load=web,web_kanban,attachment_s3,session_redis,logging_json`
### Server Environment ### Server Environment
The server environments in `server_environment_files` must be at least: The server environments in `server_environment_files` must be at least:
+4
View File
@@ -29,6 +29,10 @@ the other location (db or filesystem). This is a convenient way to be able to
read the production attachments on a replication (since you have the read the production attachments on a replication (since you have the
credentials) without any risk to alter the production data. credentials) without any risk to alter the production data.
This addon must be added in the server wide addons with (``--load`` option):
``--load=web,web_kanban,attachment_s3``
Limitations Limitations
----------- -----------
+4
View File
@@ -21,6 +21,10 @@ The storage of sessions in Redis is activated using environment variables.
The keys are set to ``session:<session id>``. The keys are set to ``session:<session id>``.
When a prefix is defined, the keys are ``session:<prefix>:<session id>`` When a prefix is defined, the keys are ``session:<prefix>:<session id>``
This addon must be added in the server wide addons with (``--load`` option):
``--load=web,web_kanban,session_redis``
Limitations Limitations
----------- -----------