From 1925ea8543cefa7c5f41ce387f1695add8932fcb Mon Sep 17 00:00:00 2001 From: Richard Mathot Date: Mon, 26 Aug 2019 09:56:42 +0200 Subject: [PATCH] [IMP] odoo_sh: explain overlay fs features opw-1945086 --- odoo_sh/getting_started/branches.rst | 2 +- odoo_sh/getting_started/online-editor.rst | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/odoo_sh/getting_started/branches.rst b/odoo_sh/getting_started/branches.rst index 40195f030..da0228cbb 100644 --- a/odoo_sh/getting_started/branches.rst +++ b/odoo_sh/getting_started/branches.rst @@ -175,7 +175,7 @@ staging branches as the emails of your production database are really sent inste Shell ----- -A shell access to your container. You can perform basic linux command (:code:`ls`, :code:`top`) +A shell access to your container. You can perform basic linux commands (:code:`ls`, :code:`top`) and open a shell on your database by typing :code:`psql`. .. image:: ./media/interface-branches-shell.png diff --git a/odoo_sh/getting_started/online-editor.rst b/odoo_sh/getting_started/online-editor.rst index 6442952ed..e36ed1a64 100644 --- a/odoo_sh/getting_started/online-editor.rst +++ b/odoo_sh/getting_started/online-editor.rst @@ -49,6 +49,12 @@ The working directory is composed of the following folders: │ └── pip.log Python packages installation logs You can edit the source code (files under */src*) in development and staging builds. + +.. note:: + Your changes won't be propagated to a new build, you must commit them in your + source code if you want to make them persist. + + For production builds, the source code is read-only, because applying local changes on a production server is not a good practice.