mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-11 15:51:00 +00:00
0a4a2bbac2
For more information, checkout the plugin docs: https://github.com/overhangio/tutor-richie
25 lines
424 B
Python
Executable File
25 lines
424 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",
|
|
"richie",
|
|
"webui",
|
|
"xqueue",
|
|
]:
|
|
try:
|
|
OfficialPlugin.load(plugin_name)
|
|
except ImportError:
|
|
pass
|
|
|
|
from tutor.commands.cli import main
|
|
|
|
main()
|