mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-06 05:17:54 +00:00
26 lines
437 B
Python
Executable File
26 lines
437 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",
|
|
"forum",
|
|
"license",
|
|
"mfe",
|
|
"minio",
|
|
"notes",
|
|
"richie",
|
|
"webui",
|
|
"xqueue",
|
|
]:
|
|
try:
|
|
OfficialPlugin.load(plugin_name)
|
|
except ImportError:
|
|
pass
|
|
|
|
from tutor.commands.cli import main
|
|
|
|
main()
|