mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-11 07:41:02 +00:00
ceddc11c29
One of the breaking changes of this release is the removal of the webui and android features; these are moved to dedicated plugins. This causes a breaking change: the renaming of the DOCKER_IMAGE_ANDROID config variable to ANDROID_DOCKER_IMAGE. See this TEP for reference: https://discuss.overhang.io/t/separate-webui-and-android-from-tutor-core-and-move-to-dedicated-plugins/1473
24 lines
410 B
Python
Executable File
24 lines
410 B
Python
Executable File
#!/usr/bin/env python3
|
|
from tutor.plugins import OfficialPlugin
|
|
|
|
# Manually install plugins (this is for creating the bundle)
|
|
for plugin_name in [
|
|
"android",
|
|
"discovery",
|
|
"ecommerce",
|
|
"license",
|
|
"mfe",
|
|
"minio",
|
|
"notes",
|
|
"webui",
|
|
"xqueue",
|
|
]:
|
|
try:
|
|
OfficialPlugin.load(plugin_name)
|
|
except ImportError:
|
|
pass
|
|
|
|
from tutor.commands.cli import main
|
|
|
|
main()
|