From 7361c608455955b636ca5992c2d4ff2667648a6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 7 Oct 2019 19:27:24 +0200 Subject: [PATCH] Clarify init command in docs "init" command should be run after "start". --- docs/local.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/local.rst b/docs/local.rst index 0174e3e..6961b9a 100644 --- a/docs/local.rst +++ b/docs/local.rst @@ -43,17 +43,6 @@ Update docker images This downloads the latest version of the docker images from `Docker Hub `_. Depending on your bandwidth, this might take a long time. Minor image updates will be incremental, and thus much faster. -Service initialisation -~~~~~~~~~~~~~~~~~~~~~~ - -:: - - tutor local init - -This command should be run just once. It will initialise all applications: in particular, this will create the required databases tables and apply database migrations for all applications. - -If initialisation is stopped with a ``Killed`` message, this certainly means the docker containers don't have enough RAM. See the :ref:`troubleshooting` section. - Running Open edX ~~~~~~~~~~~~~~~~ @@ -73,6 +62,17 @@ And then, to stop all services:: tutor local stop +Service initialisation +~~~~~~~~~~~~~~~~~~~~~~ + +:: + + tutor local init + +This command should be run just once. It will initialise all applications in a running platform. In particular, this will create the required databases tables and apply database migrations for all applications. + +If initialisation is stopped with a ``Killed`` message, this certainly means the docker containers don't have enough RAM. See the :ref:`troubleshooting` section. + Logging ~~~~~~~