mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-15 17:47:13 +00:00
Fix minor docs issues
This commit is contained in:
parent
328e70b8b5
commit
ae2af6b1f8
@ -111,7 +111,7 @@ To debug a local edx-platform repository, add a ``import ipdb; ipdb.set_trace()`
|
||||
XBlock and edx-platform plugin development
|
||||
------------------------------------------
|
||||
|
||||
In some cases you will have to develop features for packages that are pip-installed next to edx-platform. This is quite easy with Tutor. Just add your packages to the `$(tutor config printroot)/env/build/openedx/requirements/private.txt`` file. To avoid re-building the openedx Docker image at every change, you should add your package in editable mode. For instance::
|
||||
In some cases you will have to develop features for packages that are pip-installed next to edx-platform. This is quite easy with Tutor. Just add your packages to the ``$(tutor config printroot)/env/build/openedx/requirements/private.txt`` file. To avoid re-building the openedx Docker image at every change, you should add your package in editable mode. For instance::
|
||||
|
||||
echo "-e ./mypackage" >> "$(tutor config printroot)/env/build/openedx/requirements/private.txt"
|
||||
|
||||
|
@ -30,9 +30,7 @@ class LocalContext(Context):
|
||||
)
|
||||
|
||||
|
||||
@click.group(
|
||||
help="Run Open edX locally with docker-compose",
|
||||
)
|
||||
@click.group(help="Run Open edX locally with docker-compose",)
|
||||
@click.pass_context
|
||||
def local(context):
|
||||
context.obj = LocalContext(context.obj.root)
|
||||
|
Loading…
Reference in New Issue
Block a user