From 78ac4d306e879445af5bc154f25470f3de5b76b5 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Thu, 10 Nov 2016 15:58:24 +0100 Subject: [PATCH 1/3] Document --load option --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 88f3086..bf11379 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,18 @@ python-json-logger==0.1.5 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 The server environments in `server_environment_files` must be at least: From 92880deeab3b5cdb2d7ed71c3f7788327ab2ae28 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Thu, 10 Nov 2016 15:59:32 +0100 Subject: [PATCH 2/3] Explicit session_redis must be started in --load --- session_redis/README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/session_redis/README.rst b/session_redis/README.rst index 3f15914..8a05b14 100644 --- a/session_redis/README.rst +++ b/session_redis/README.rst @@ -21,6 +21,10 @@ The storage of sessions in Redis is activated using environment variables. The keys are set to ``session:``. When a prefix is defined, the keys are ``session::`` +This addon must be added in the server wide addons with (``--load`` option): + +``--load=web,web_kanban,session_redis`` + Limitations ----------- From 779aa03c5705a10d1e21a18af405f9617a69cb63 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Thu, 10 Nov 2016 16:00:21 +0100 Subject: [PATCH 3/3] Explicit attachment_s3 must be started in --load --- attachment_s3/README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/attachment_s3/README.rst b/attachment_s3/README.rst index e498d7a..9b13cc7 100644 --- a/attachment_s3/README.rst +++ b/attachment_s3/README.rst @@ -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 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 -----------