mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-11 07:41:02 +00:00
e14f660cb1
There is too much information in each of the local/k8s/dev docs pages. The "guides" that are listed in each one of those pages are moved either to "common tasks" or to a dedicated "tutorials" section. This paves the way for more comprehensive tutorials, where we describe how to run the latest master branches of Open edX. I am well aware that, as they stand, the tutorials are of poor quality and should be rewritten. This is a task for another day/commit. For now, we only move the contents to a separate part of the docs. Also, we should add a "reference" section to the docs, where we add the result of `tutor <subcommand> --help`.
26 lines
826 B
ReStructuredText
26 lines
826 B
ReStructuredText
Upgrading from older releases
|
|
-----------------------------
|
|
|
|
Upgrading from v3+
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
Just upgrade Tutor using your :ref:`favorite installation method <install>` and run quickstart again::
|
|
|
|
tutor local quickstart
|
|
|
|
Upgrading from v1 or v2
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Versions 1 and 2 of Tutor were organized differently: they relied on many different ``Makefile`` and ``make`` commands instead of a single ``tutor`` executable. To migrate from an earlier version, you should first stop your platform::
|
|
|
|
make stop
|
|
|
|
Then, install Tutor using one of the :ref:`installation methods <install>`. Then, create the Tutor project root and move your data::
|
|
|
|
mkdir -p "$(tutor config printroot)"
|
|
mv config.json data/ "$(tutor config printroot)"
|
|
|
|
Finally, launch your platform with::
|
|
|
|
tutor local quickstart
|