diff --git a/docs/faq.rst b/docs/faq.rst index 3c2ad99..bf82a71 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -55,7 +55,7 @@ Yes, many of them. There is no way to count precisely how many running Open edX Why should I trust software written by some random guy on the Internet? ----------------------------------------------------------------------- -You shouldn't :) Tutor is actively maintained by `Overhang.io `_, a France-based company founded by `Régis Behmo `_. Régis has been working on Tutor since early 2018; he has been a contributor of the Open edX project since 2015. In particular, he has worked for 2 years on `FUN-MOOC `_, one of the top 5 largest Open edX platforms in the world. He presented several talks at the Open edX conferences: +You shouldn't :) Tutor is actively maintained by `Overhang.IO `_, a France-based company founded by `Régis Behmo `_. Régis has been working on Tutor since early 2018; he has been a contributor of the Open edX project since 2015. In particular, he has worked for 2 years at `FUN-MOOC `_, one of the top 5 largest Open edX platforms in the world. He presented several talks at the Open edX conferences: - *Deploying a robust, scalable Open edX platform in 1 click (or less) with Tutor*, March 2019 (`video `_, `slides `_) - *Videofront: a Self-Hosted YouTube*, June 2017 (`video `__, `slides `__) diff --git a/docs/local.rst b/docs/local.rst index 74d5522..089d49c 100644 --- a/docs/local.rst +++ b/docs/local.rst @@ -143,8 +143,8 @@ To update the course search index, run:: Reloading Open edX settings ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -soft -After modifying Open edX settings, for instance when running ``tutor config save``, you will want to restart the web processes of the LMS and the CMS to take into account those new settings. It is possible to simply restart the whole platform (with ``tutor local reboot``) but that is overkill. A quicker alternative is to send the HUP signal to the gunicorn processes running inside the containers. The "openedx" Docker image comes with a convenient script that does just that. To run it, execute:: + +After modifying Open edX settings, for instance when running ``tutor config save``, you will want to restart the web processes of the LMS and the CMS to take into account those new settings. It is possible to simply restart the whole platform (with ``tutor local reboot``) or just a single service (``tutor local restart lms``) but that is overkill. A quicker alternative is to send the HUP signal to the gunicorn processes running inside the containers. The "openedx" Docker image comes with a convenient script that does just that. To run it, execute:: tutor local exec lms reload-gunicorn diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 19b1ee9..3769d90 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -3,7 +3,7 @@ Quickstart (1-click install) ---------------------------- -1. `Download `_ the latest stable release of Tutor, uncompress the file and place the ``tutor`` executable in your path. From the command line: +1. `Download `_ the latest stable release of Tutor and place the ``tutor`` executable in your path. From the command line: .. include:: cli_download.rst diff --git a/tutor/commands/dev.py b/tutor/commands/dev.py index 3bf47bd..f030630 100644 --- a/tutor/commands/dev.py +++ b/tutor/commands/dev.py @@ -31,7 +31,7 @@ class DevContext(Context): ) -@click.group(help="Run Open edX platform with development settings") +@click.group(help="Run Open edX locally with development settings") @click.pass_context def dev(context): context.obj = DevContext(context.obj.root) diff --git a/tutor/commands/local.py b/tutor/commands/local.py index 39e536b..c88ad2c 100644 --- a/tutor/commands/local.py +++ b/tutor/commands/local.py @@ -31,8 +31,7 @@ class LocalContext(Context): @click.group( - short_help="Run Open edX locally", - help="Run Open edX platform locally, with docker-compose.", + help="Run Open edX locally with docker-compose", ) @click.pass_context def local(context):