6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-12-12 14:17:46 +00:00

Document cloud deployment

This commit is contained in:
Régis Behmo 2019-02-20 10:52:54 +01:00
parent e7f82b5465
commit f417fbf4f9
2 changed files with 15 additions and 0 deletions

View File

@ -44,3 +44,12 @@ Installing from source
git clone https://github.com/regisb/tutor git clone https://github.com/regisb/tutor
cd tutor cd tutor
python setup.py develop python setup.py develop
Cloud deployment
----------------
Are you deploying Tutor to a Ubuntu cloud server? The `ubuntu.sh <https://github.com/regisb/tutor/blob/master/cloud/ubuntu.sh>`_ installs Tutor and creates a service under supervision that runs the Tutor :ref:`web UI <webui>`. To run this script, just connect to your server and run::
curl -sSL https://raw.githubusercontent.com/regisb/tutor/master/cloud/ubuntu.sh | sudo bash -e
After the script finishes, you should be able to access the web UI at http://server_ip_address:3737. For security reasons, you should immediately set a password for accessing the UI by running ``webui configure`` from the web UI, or ``tutor webui configure`` from the server shell.

View File

@ -16,6 +16,12 @@ You can then access the interface at http://localhost:3737, or http://youserveru
.. image:: img/webui.png .. image:: img/webui.png
All ``tutor`` commands can be executed from this web UI: you just don't need to prefix the commands with ``tutor``. For instance, to deploy a local Open edX instance, run::
local quickstart
instead of ``tutor local quickstart``.
Authentication Authentication
-------------- --------------